Determining if file exists using c# and resolving UNC path - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T08:08:07Z http://stackoverflow.com/feeds/question/458363 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/458363/determining-if-file-exists-using-c-and-resolving-unc-path 3 Determining if file exists using c# and resolving UNC path steve_mtl 2009-01-19T17:10:54Z 2009-01-19T18:17:57Z <p>I am trying to write a function to determine if a file exists. The two methods prove to return inconsistent results (fileExists() seems to provide accurate results, compared to isFileFound(), that returns false positives - i would have expected an exception when trying to create the instance). </p> <pre><code>protected bool isFileFound(string path, string fileName) { System.IO.FileInfo fi = null; bool found = false; try { fi = new System.IO.FileInfo(path + fileName); found = true; } catch (Exception e) { baselogger.Fatal(e.Message + " " + e.StackTrace + " \n" + path + fileName); } return found; } protected bool fileExists(string path, string pattern) { bool success = false; try { success = File.Exists(path + pattern); } catch (Exception e) { baselogger.Warn(e.Message + " " + e.StackTrace + " " + e.Source); } return success; } </code></pre> <p>Neither seems to be able to resolve a UNC path of the following syntax: <strong><em>\\abcserver\c$\xyzfolder\foo.bar</em></strong></p> <p>Any idea why the unc path is failing for these methods would be greatly appreciated.</p> http://stackoverflow.com/questions/458363/determining-if-file-exists-using-c-and-resolving-unc-path/458376#458376 8 Answer by Martin for Determining if file exists using c# and resolving UNC path Martin 2009-01-19T17:13:37Z 2009-01-19T17:28:56Z <p>You can create a FileInfo for an non-existing file. But then you can check the FileInfo.Exists property to determine whether the file exists, e.g:</p> <pre><code>FileInfo fi = new FileInfo(somePath); bool exists = fi.Exists; </code></pre> <p><strong>Update</strong>: In a short test this also worked for UNC paths, e.g. like this:</p> <pre><code>FileInfo fi = new FileInfo(@"\\server\share\file.txt"); bool exists = fi.Exists; </code></pre> <p>Are you sure that the account (under which your application is running) has access to the share. I think that (by default) administrative rights are required to access the share "c$".</p> http://stackoverflow.com/questions/458363/determining-if-file-exists-using-c-and-resolving-unc-path/458379#458379 2 Answer by Joel Coehoorn for Determining if file exists using c# and resolving UNC path Joel Coehoorn 2009-01-19T17:14:24Z 2009-01-19T17:36:58Z <p>See this question:<br /> <a href="http://stackoverflow.com/questions/265953/c-how-can-you-easily-check-if-access-is-denied-for-a-file">http://stackoverflow.com/questions/265953/c-how-can-you-easily-check-if-access-is-denied-for-a-file</a></p> <p>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.</p> <p>The reason your <code>isFileFound</code> method doesn't work is because the <code>FileInfo</code> 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 <code>.Create()</code> method, and you've set your desired properties all at once.</p> <p>I suspect the reason the UNC path fails 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.</p> http://stackoverflow.com/questions/458363/determining-if-file-exists-using-c-and-resolving-unc-path/458455#458455 2 Answer by llamaoo7 for Determining if file exists using c# and resolving UNC path llamaoo7 2009-01-19T17:40:13Z 2009-01-19T17:40:13Z <p>This may or may not be the case, but could you be joining your path an file name incorrectly for one of your cases.</p> <p>This:</p> <p>success = File.Exists(path + pattern);</p> <p>vs:</p> <p>success = File.Exists(Path.Join(path,pattern));</p> http://stackoverflow.com/questions/458363/determining-if-file-exists-using-c-and-resolving-unc-path/458459#458459 0 Answer by Click Ok for Determining if file exists using c# and resolving UNC path Click Ok 2009-01-19T17:41:10Z 2009-01-19T17:41:10Z <p>This can help you: <br> <a href="http://www.codeplex.com/FileDirectoryPath" rel="nofollow">http://www.codeplex.com/FileDirectoryPath</a> <br> It's <strong>NDepend.Helpers.FilePathDirectory</strong>, that have a "Path validity check API" among other that can be useful.</p> http://stackoverflow.com/questions/458363/determining-if-file-exists-using-c-and-resolving-unc-path/458591#458591 0 Answer by steve_mtl for Determining if file exists using c# and resolving UNC path steve_mtl 2009-01-19T18:17:57Z 2009-01-19T18:17:57Z <p>So i went with the </p> <pre><code>bool success = File.Exists(path + Filename); </code></pre> <p>option, as opposed to using the FileInfo route.</p> <p>Thanks for all the suggestions!</p>