1

如何检查服务器上是否存在某些 DIR?虽然我可以通过以下方式检查文件是否存在:

try
{
    FtpWebRequest request=null;

    request = (FtpWebRequest)WebRequest.Create("ftp://" + webrequestUrl + "/somefile.txt");
    request.Credentials = new NetworkCredential(username, password);
    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)
        {
            //task
        }
    }
}

但是如何检查 DIR?如果我只在 URI 中指定 DIR,那么如果 DIR 不存在,它就不会捕获。

4

4 回答 4

2
request = (FtpWebRequest)WebRequest.Create("ftp://" + webrequestUrl); //no file name
request.Credentials = new NetworkCredential(username, password);
myFtpRequest.Method = WebRequestMethods.Ftp.ListDirectory;

并检查您的文件/目录是否已列出。

您需要询问响应,它应该包含可能的文件和目录的列表。

您不应该使用 catch 来处理程序流。 MSDN 示例

于 2010-01-05T09:39:13.103 回答
0

我用:

private bool CreateFTPDirectory(string directory)
{

    try
    {
        //create the directory
        FtpWebRequest requestDir = (FtpWebRequest)FtpWebRequest.Create(new Uri(FtpURI+"/"+directory));
        requestDir.Method = WebRequestMethods.Ftp.MakeDirectory;
        requestDir.UsePassive = true;
        requestDir.UseBinary = true;
        requestDir.KeepAlive = false;
        //requestDir.UseDefaultCredentials = true;
        requestDir.Credentials = new NetworkCredential(UserId, Password);
        requestDir.Proxy = WebRequest.DefaultWebProxy;
        requestDir.Proxy.Credentials = CredentialCache.DefaultNetworkCredentials;

        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) || (((int)response.StatusCode)==521))
        {
            response.Close();
            return true;
        }
        else
        {
            response.Close();
            return false;
        }
    }
}

这也有创建目录的副作用。如果它已经存在,您将返回 521 结果,该结果未在 .NET 枚举中定义。

当您连接到 FTP 服务器时,您可能会将 Uri 指定为“ftp//ftp.domain.com/somedirectory”,但这会转换为:“ftp://ftp.domain.com/homedirectoryforftp/somedirectory”。为了能够定义完整的根目录,请使用“ftp://ftp.domain.com//somedirectory”,它转换为机器上的//somedirectory。

于 2010-09-24T17:08:33.577 回答
0

我不认为代码做你认为它做的事情。据我了解您正在尝试获取文件的文档ls(想想dir在 DOS/Windows 中,目录中的文件列表)。那没有意义。它在某种程度上起作用,因为您在尝试访问目录“somefile.txt”时遇到了异常。

通过查看父级的 ListDirectory 响应的输出,您应该能够以正确的方式 (tm) 执行此操作:

做一个 ListDirectoryftp://yourserver/并检查是否

  • 你的文件
  • 你的目录

已列出。

于 2010-01-05T09:21:13.123 回答
0

通过使用edtFTPnet

  private void ftp_folder_IsExists()
{
    FTPClient ftp = default(FTPClient);

    ftp = new FTPClient("ftp_host_name_here");  // ex.:- no need to use ftp in the host name, provide name only
    ftp.Login("username", "password");

    string[] file_and_folders = ftp.Dir(".", false);// . is used to get all the [files and folders] in the root of FTP

    string[] file_and_folders_1 = ftp.Dir("MyFolder", false);// this will get all the [files and folder] inside MyFolder (ex. ftp.ahostname.com/MyFolder/)


    //checking for a FILE
    if (file_and_folders.Contains("something.txt")) {
        //Do what you want..
    } else {
        //Do what you want..

    }

    //checking for a FOLDER
    if (file_and_folders.Contains("A_Folder")) {
        //Do what you want..
    } else {
        //Do what you want..

    }

}

注意:用 VB.NET 编写并使用http://converter.telerik.com/转换的代码

于 2015-01-16T12:07:10.533 回答