In my code I do
if (!File.Exists(getSomePath())) { MessageBox.Show("... existing" + " " + getSomePath()); this.Close(); }
I see that getSomePath() correct, but when I open the application on the network, it says that it does not exist. When I copy the folder to my local drive, it says that it exists.
What's happening?
user34537
source share