Is there any way to deal with situation when you need to get list of all directories on a FTP server, where the number of directories is so big that it takes too long to get it and operation fails with timeout?

I wonder if there are some libraries that let you do that somehow?

link|improve this question

Can you limit the data i.e only find the first 5 levels and do a LOD methodology? – Brad Feb 10 at 15:49
can you get it in chunks? Say all folder that start with 'a', then another query for those which start with 'b', etc. Perhaps you can split the query in other ways as well (ie date) – Adrian Feb 10 at 15:49
The key is ListDirectory I posted an example below of how you can do it.. thanks Happy Friday – DJ KRAZE Feb 10 at 15:53
feedback

1 Answer

up vote 1 down vote accepted

Try something like this

        FtpWebRequest ftpRequest = (FtpWebRequest)WebRequest.Create(uri);
        ftpRequest.Credentials = new NetworkCredential("anonymous","yourName@SomeDomain.com");//replace with your Creds
        ftpRequest.Method = WebRequestMethods.Ftp.ListDirectory;
        FtpWebResponse response = (FtpWebResponse)ftpRequest.GetResponse();
        StreamReader streamReader = new StreamReader(response.GetResponseStream());

        List<string> directories = new List<string>();

        string line = streamReader.ReadLine();
        while (!string.IsNullOrEmpty(line))
        {
            directories.Add(line);
            line = streamReader.ReadLine();
        }

        streamReader.Close();

        // also add some code that will Dispose of the StreamReader object
        // something like ((IDisposable)streanReader).Dispose();
        // Dispose of the List<string> as well 
           line = null;
link|improve this answer
it gets stuck on (FtpWebResponse)ftpRequest.GetResponse() – Agzam Feb 10 at 16:08
what do you mean when you say it gets stuck..please provide more information also can you wrap your code around a Try Catch.. – DJ KRAZE Feb 10 at 16:10
Oh no no no no... it actually worked! – Agzam Feb 10 at 16:12
well if you have a lot of Directories to loop thru this could be normal.. also it's hard to tell not knowing what type of Network / Connection you have .. there could be so many possibilities.. but the fact that the code works is a Plus.. – DJ KRAZE Feb 10 at 16:15
1  
better yet.. here is an example from MSDN where you can do it Async msdn.microsoft.com/en-us/library/system.net.ftpwebrequest.aspx I would really like to help you solve this issue I have never had that issue because of the Directory structure of where I am is not that large.. – DJ KRAZE Feb 10 at 16:54
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.