web-dev-qa-db-ja.com

FTPディレクトリが存在するかどうかを確認する方法

FTP経由で特定のディレクトリをチェックする最良の方法を探しています。

現在、私は次のコードを持っています:

private bool FtpDirectoryExists(string directory, string username, string password)
{

    try
    {
        var request = (FtpWebRequest)WebRequest.Create(directory);
        request.Credentials = new NetworkCredential(username, password);
        request.Method = WebRequestMethods.Ftp.GetDateTimestamp;

        FtpWebResponse response = (FtpWebResponse)request.GetResponse();
    }
    catch (WebException ex)
    {
        FtpWebResponse response = (FtpWebResponse)ex.Response;
        if (response.StatusCode == FtpStatusCode.ActionNotTakenFileUnavailable)
            return false;
        else
            return true;
    }
    return true;
}

これは、ディレクトリが存在するかどうかにかかわらずfalseを返します。誰かが正しい方向に私を指すことができます。

29
Billy Logan

基本的にそのようなディレクトリを作成するときに受け取るエラーをトラップしました。

private bool CreateFTPDirectory(string directory) {

    try
    {
        //create the directory
        FtpWebRequest requestDir = (FtpWebRequest)FtpWebRequest.Create(new Uri(directory));
        requestDir.Method = WebRequestMethods.Ftp.MakeDirectory;
        requestDir.Credentials = new NetworkCredential("username", "password");
        requestDir.UsePassive = true;
        requestDir.UseBinary = true;
        requestDir.KeepAlive = false;
        FtpWebResponse response = (FtpWebResponse)requestDir.GetResponse();
        Stream ftpStream = response.GetResponseStream();

        ftpStream.Close();
        response.Close();

        return true;
    }
    catch (WebException ex)
    {
        FtpWebResponse response = (FtpWebResponse)ex.Response;
        if (response.StatusCode == FtpStatusCode.ActionNotTakenFileUnavailable)
        {
            response.Close();
            return true;
        }
        else
        {
            response.Close();
            return false;
        }  
    }
}
18
Billy Logan

これは.NETでFTPにアクセスする通常の方法であるため、すでにFtpWebRequestにある程度精通していると思います。

ディレクトリを一覧表示して、エラーStatusCodeを確認できます。

    try 
{  
    FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://ftp.Microsoft.com/12345");  
    request.Method = WebRequestMethods.Ftp.ListDirectory;  
    using (FtpWebResponse response = (FtpWebResponse)request.GetResponse())  
    {  
        // Okay.  
    }  
}  
catch (WebException ex)  
{  
    if (ex.Response != null)  
    {  
        FtpWebResponse response = (FtpWebResponse)ex.Response;  
        if (response.StatusCode == FtpStatusCode.ActionNotTakenFileUnavailable)  
        {  
            // Directory not found.  
        }  
    }  
} 
8
Mahdi

私も同様の問題に悩まされていました。私が使っていた、

FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://ftpserver.com/rootdir/test_if_exist_directory");  
request.Method = WebRequestMethods.Ftp.ListDirectory;  
FtpWebResponse response = (FtpWebResponse)request.GetResponse();

ディレクトリが存在しない場合は例外を待ちました。このメソッドは例外をスローしませんでした。

いくつかのヒットと試用の後、ディレクトリを「 ftp://ftpserver.com/rootdir/test_if_exist_directory "から」に変更しました:" ftp://ftpserver.com/rootdir/test_if_exist_directory / "。今、この作品は私のために働いています。

この作業を行うには、ftpフォルダーのuriにバックスラッシュ(/)を追加する必要があると思います。

要求に応じて、完全なソリューションは次のようになります。

public bool DoesFtpDirectoryExist(string dirPath)
{
    try
    {
        FtpWebRequest request = (FtpWebRequest)WebRequest.Create(dirPath);  
        request.Method = WebRequestMethods.Ftp.ListDirectory;  
        FtpWebResponse response = (FtpWebResponse)request.GetResponse();
        return true;
     }
     catch(WebException ex)
     {
         return false;
     }
}

//Calling the method:
string ftpDirectory = "ftp://ftpserver.com/rootdir/test_if_exist_directory/"; //Note: backslash at the last position of the path.
bool dirExists = DoesFtpDirectoryExist(ftpDirectory);
8
Bikash

私はこの線に沿って何かを試します:

  • MLST <ディレクトリ> FTPコマンド(RFC3659で定義)を送信し、その出力を解析します。既存のディレクトリのディレクトリ詳細を含む有効な行を返す必要があります。

  • MLSTコマンドを使用できない場合は、CWDコマンドを使用して、作業ディレクトリをテスト済みのディレクトリに変更してみてください。戻ることができるようにテストされたディレクトリに変更する前に、現在のパスを決定することを忘れないでください(PWDコマンド)。

  • 一部のサーバーでは、MDTMとSIZEコマンドの組み合わせを同様の目的に使用できますが、動作は非常に複雑であり、この記事の範囲外です。

これは基本的に、現在のバージョンの Rebex FTPコンポーネント でDirectoryExistsメソッドが行うことです。次のコードは、その使用方法を示しています。

string path = "/path/to/directory";

Rebex.Net.Ftp ftp = new Rebex.Net.Ftp();
ftp.Connect("hostname");
ftp.Login("username","password");

Console.WriteLine(
  "Directory '{0}' exists: {1}", 
  path, 
  ftp.DirectoryExists(path)
);

ftp.Disconnect();
6
Martin Vobr

このコードを使用して、あなたの答えかもしれません。

 public bool FtpDirectoryExists(string directoryPath, string ftpUser, string ftpPassword)
        {
            bool IsExists = true;
            try
            {
                FtpWebRequest request = (FtpWebRequest)WebRequest.Create(directoryPath);
                request.Credentials = new NetworkCredential(ftpUser, ftpPassword);
                request.Method = WebRequestMethods.Ftp.PrintWorkingDirectory;

                FtpWebResponse response = (FtpWebResponse)request.GetResponse();
            }
            catch (WebException ex)
            {
                IsExists = false;
            }
            return IsExists;
        }

このメソッドを次のように呼び出しました:

bool result =    FtpActions.Default.FtpDirectoryExists( @"ftp://mydomain.com/abcdir", txtUsername.Text, txtPassword.Text);

別のライブラリを使用する理由-独自のロジックを作成します。

4
Niranjan Singh

どの方法でも確実なチェックを取得しようとしましたが、WebRequestMethods.Ftp.PrintWorkingDirectoryメソッドもWebRequestMethods.Ftp.ListDirectoryメソッドも正しく機能しませんでした。サーバーに存在しないftp://<website>/Logsをチェックするときに失敗しましたが、それは存在すると言います。

だから私が思いついた方法は、フォルダにアップロードしようとすることでした。ただし、1つの「落とし穴」は、このスレッドで読むことができるパス形式です Linuxへのアップロード

これがコードスニペットです

private bool DirectoryExists(string d) 
{ 
    bool exists = true; 
    try 
    { 
        string file = "directoryexists.test"; 
        string path = url + homepath + d + "/" + file;
        //eg ftp://website//home/directory1/directoryexists.test
        //Note the double space before the home is not a mistake

        //Try to save to the directory 
        req = (FtpWebRequest)WebRequest.Create(path); 
        req.ConnectionGroupName = "conngroup1"; 
        req.Method = WebRequestMethods.Ftp.UploadFile; 
        if (nc != null) req.Credentials = nc; 
        if (cbSSL.Checked) req.EnableSsl = true; 
        req.Timeout = 10000; 

        byte[] fileContents = System.Text.Encoding.Unicode.GetBytes("SAFE TO DELETE"); 
        req.ContentLength = fileContents.Length; 

        Stream s = req.GetRequestStream(); 
        s.Write(fileContents, 0, fileContents.Length); 
        s.Close(); 

        //Delete file if successful 
        req = (FtpWebRequest)WebRequest.Create(path); 
        req.ConnectionGroupName = "conngroup1"; 
        req.Method = WebRequestMethods.Ftp.DeleteFile; 
        if (nc != null) req.Credentials = nc; 
        if (cbSSL.Checked) req.EnableSsl = true; 
        req.Timeout = 10000; 

        res = (FtpWebResponse)req.GetResponse(); 
        res.Close(); 
    } 
    catch (WebException ex) 
    { 
        exists = false; 
    } 
    return exists; 
} 
2
Christian

親ディレクトリに移動し、「ls」コマンドを実行して、結果を解析します。

0

この@BillyLogansの提案を機能させることができませんでした。

問題はデフォルトのFTPディレクトリが/ home/usr/fredであることがわかった

私が使用したとき:

String directory = "ftp://some.domain.com/mydirectory"
FtpWebRequest requestDir = (FtpWebRequest)FtpWebRequest.Create(new Uri(directory));

これが変わる

"ftp:/some.domain.com/home/usr/fred/mydirectory"

これを停止するには、ディレクトリUriを次のように変更します。

String directory = "ftp://some.domain.com//mydirectory"

その後、これが機能し始めます。

0
AnthonyLambert