FTPサーバー上のすべてのディレクトリのリストを取得する必要がある場合、ディレクトリの数が非常に多く、取得に時間がかかりすぎて操作がタイムアウトに失敗するような状況に対処する方法はありますか?ftpディレクトリリストのタイムアウト。大量のサブディレクトリ
何とかそうするライブラリがあるのだろうか?
FTPサーバー上のすべてのディレクトリのリストを取得する必要がある場合、ディレクトリの数が非常に多く、取得に時間がかかりすぎて操作がタイムアウトに失敗するような状況に対処する方法はありますか?ftpディレクトリリストのタイムアウト。大量のサブディレクトリ
何とかそうするライブラリがあるのだろうか?
この
FtpWebRequest ftpRequest = (FtpWebRequest)WebRequest.Create(uri);
ftpRequest.Credentials = new NetworkCredential("anonymous","[email protected]");//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;
のようなものを試してみてください、あなたは最初の5つのレベルを見つけ、LODの方法論を行うデータすなわちを制限することはできますか? –
チャンクで入手できますか? 'a'で始まるフォルダをすべて表示し、 'b'で始まるものについては別のクエリを実行します。他の方法でクエリを分割することもできます(日付など) – Adrian
キーはListDirectoryです。あなたはそれを行うことができます..おかげでハッピーフライデー – MethodMan