How To: Prevent Timeout When Inspecting Unavailable Network Share - C#

14,763

Solution 1

Place it on its own thread, if it doesn't come back in a certain amount of time, move on.

Solution 2

You can use this code:

var task = new Task<bool>(() => { var fi = new FileInfo(uri.LocalPath); return fi.Exists; });
task.Start();

return task.Wait(100) && task.Result;

Solution 3

Perhaps you could try pinging the server first, and only ask for the directory info if you get a response?

Share:
14,763
Admin
Author by

Admin

Updated on June 26, 2022

Comments

  • Admin
    Admin almost 2 years

    We have some basic C# logic that iterates over a directory and returns the folders and files within. When run against a network share (\\server\share\folder) that is inaccessible or invalid, the code seems to 'hang' for about 30 seconds before returning back from the call.

    I'd like to end up with a method that will attempt to get folders and files from the given path, but without the timeout period. In other words, to reduce or eliminate the timeout altogether.

    I've tried something as simple as validating the existence of the directory ahead of time thinking that an 'unavailable' network drive would quickly return false, but that did not work as expected.

    System.IO.Directory.Exists(path) //hangs 
    
    System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(path); //hangs
    

    Any suggestions on what may help me achieve an efficient (and hopefully managed) solution?

  • Arvo Bowen
    Arvo Bowen over 8 years
    +1 from me, this is great for files but using this to answer the original question is useless. To answer the question, try replacing new FileInfo(uri.LocalPath) with new DirectoryInfo(strPath) to check directories instead of files.
  • Leo Gurdian
    Leo Gurdian over 6 years
    *** this should be the answer *** OP pls chng