In my code i do
if (!File.Exists(getSomePath()))
{
MessageBox.Show("... existing" + " " + getSomePath());
this.Close();
}
I can see getSomePath() is correct but when i open the app on the network it says it doesnt exist. When i copy the folder to my local drive it says it does exist. Whats going on?