When I run the following code on my computer, it works fine
string target = e.Link.LinkData as string;
target = System.IO.Directory.GetCurrentDirectory() + target;
System.Diagnostics.Process.Start(target);
target is not an absolute file path. Files exist. When clearing a virtual machine exception "Cannot find a specific file."
Any suggestions?
Update
I emphasize that it works fine on my computer. Why it does not work on another computer.
source
share