show/hide this revision's text 3 deleted 8 characters in body

See this question:
http://stackoverflow.com/questions/265953/c-how-can-you-easily-check-if-access-is-denied-for-a-file

The short version of that question is that you don't, because the file system is volatile. Just try to open the file and catch the exception if it fails.

The reason your isFileFound method doesn't work is because the FileInfo structure you are using can also be used to create files. You can create a FileInfo object with the desired info for a non-existing file, call it's .Create() method, and you've set your desired properties all at once.

I suspect the reason the UNC path fails because of is either 1) a permissions issue access the admin share from the user running your app, or 2) The $ symbol is throwing the method off, either because it's not being input correctly or because of a bug in the underlying .Exists() implementation.

show/hide this revision's text 2 added 293 characters in body

See this question:
http://stackoverflow.com/questions/265953/c-how-can-you-easily-check-if-access-is-denied-for-a-file

The short version of that question is that you don't, because the file system is volatile. Just try to open the file and catch the exception if it fails.

The reason your isFileFound method doesn't work is because the FileInfo structure you are using can also be used to create files. You can create a FileInfo object with the desired info for a non-existing file, call it's .Create() method, and you've set your desired properties all at once.

I suspect the reason the UNC path fails because of either 1) a permissions issue access the admin share from the user running your app, or 2) The $ symbol is throwing the method off, either because it's not being input correctly or because of a bug in the underlying .Exists() implementation.

show/hide this revision's text 1

See this question:
http://stackoverflow.com/questions/265953/c-how-can-you-easily-check-if-access-is-denied-for-a-file

The short version of that question is that you don't, because the file system is volatile. Just try to open the file and catch the exception if it fails.

The reason your isFileFound method doesn't work is because the FileInfo structure you are using can also be used to create files. You can create a FileInfo object with the desired info for a non-existing file, call it's .Create() method, and you've set your desired properties all at once.