web-dev-qa-db-ja.com

C#でFTPを使用してディレクトリの内容を一覧表示する方法は?

C#でFTPを使用してディレクトリの内容を一覧表示する方法は?

私は以下のコードを使用してFTPでディレクトリコンテンツを一覧表示しますが、結果をXML形式で返していますが、コンテンツ全体ではなくディレクトリの名前のみが必要です。

どうすればできますか?

public class WebRequestGetExample
{
    public static void Main ()
    {
        // Get the object used to communicate with the server.
        FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://www.contoso.com/");
        request.Method = WebRequestMethods.Ftp.ListDirectoryDetails;

        // This example assumes the FTP site uses anonymous logon.
        request.Credentials = new NetworkCredential ("anonymous","[email protected]");

        FtpWebResponse response = (FtpWebResponse)request.GetResponse();

        Stream responseStream = response.GetResponseStream();
        StreamReader reader = new StreamReader(responseStream);
        Console.WriteLine(reader.ReadToEnd());

        Console.WriteLine("Directory List Complete, status {0}", response.StatusDescription);

        reader.Close();
        response.Close();
    }
}

[〜#〜] msdn [〜#〜]

42
Swapnil Gupta

これを試して:

FtpWebRequest ftpRequest = (FtpWebRequest)WebRequest.Create(uri);
ftpRequest.Credentials =new NetworkCredential("anonymous","[email protected]");
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();

それは私にディレクトリのリストを与えました...ディレクトリ文字列リストにすべてリストされています...それがあなたが必要なものであるかどうか教えてください

57
mint

あなたはおそらく探しています PrintWorkingDirectory

1
leppie

一部のプロキシはディレクトリリストを再フォーマットするため、プロキシが変更されないことを保証できない限り、ディレクトリリストを確実に解析することは非常に困難です。

1
Konektiv

ListDirectory が必要です。これは、ディレクトリの内容を一覧表示します

EDIT:または、これを使用することができます Chilkat それをうまくラップするライブラリ

1
Iain Ward

FTPディレクトリのコンテンツを取得する最も簡単で効率的な方法:

var contents = GetFtpDirectoryContents(new Uri( "ftpDirectoryUri")、new NetworkCredential( "userName"、 "password"));

    public static List<string> GetFtpDirectoryContents(Uri requestUri, NetworkCredential networkCredential)
    {
        var directoryContents = new List<string>(); //Create empty list to fill it later.
        //Create ftpWebRequest object with given options to get the Directory Contents. 
        var ftpWebRequest = GetFtpWebRequest(requestUri, networkCredential, WebRequestMethods.Ftp.ListDirectory);
        try
        {
            using (var ftpWebResponse = (FtpWebResponse)ftpWebRequest.GetResponse()) //Excute the ftpWebRequest and Get It's Response.
            using (var streamReader = new StreamReader(ftpWebResponse.GetResponseStream())) //Get list of the Directory Contentss as Stream.
            {
                var line = string.Empty; //Initial default value for line.
                do
                {
                    line = streamReader.ReadLine(); //Read current line of Stream.
                    directoryContents.Add(line); //Add current line to Directory Contentss List.
                } while (!string.IsNullOrEmpty(line)); //Keep reading while the line has value.
            }
        }
        catch (Exception) { } //Do nothing incase of Exception occurred.
        return directoryContents; //Return all list of Directory Contentss: Files/Sub Directories.
    }

    public static FtpWebRequest GetFtpWebRequest(Uri requestUri, NetworkCredential networkCredential, string method = null)
    {
        var ftpWebRequest = (FtpWebRequest)WebRequest.Create(requestUri); //Create FtpWebRequest with given Request Uri.
        ftpWebRequest.Credentials = networkCredential; //Set the Credentials of current FtpWebRequest.

        if (!string.IsNullOrEmpty(method))
            ftpWebRequest.Method = method; //Set the Method of FtpWebRequest incase it has a value.
        return ftpWebRequest; //Return the configured FtpWebRequest.
    }
0
Ahmed Sabry

FTPディレクトリからファイルとディレクトリを再帰的に取得する次のリンクには、メソッドGetDirectoryInformation()があります。

FTPディレクトリからファイルを再帰的に取得する

0
Pabitra Dash