0

我现在FtpWebRequest用来制作目录,我会得到这个异常,比如ftp error 550: File unavailable. 虽然有时我可以成功创建目录,但我总是得到这个异常。

下面是我的 CheckDir 函数:

protected string CheckDir(string fullpath, string ip, string acc, string pwd)
{
    string[] path = fullpath.Split(slash[1]);

    bool result = false;

    FtpWebRequest request = (FtpWebRequest)(WebRequest.Create(ip + path[2]));
    request.Credentials = new NetworkCredential(acc, pwd);
    request.Method = WebRequestMethods.Ftp.GetDateTimestamp;
    request.Timeout = 10000;

    try
    {
        using (FtpWebResponse response = (FtpWebResponse)request.GetResponse())
        {
            result = true;
        }
    }
    catch (WebException ex)
    {
        FtpWebResponse response = (FtpWebResponse)ex.Response;

        if (response != null && response.StatusCode == FtpStatusCode.ActionNotTakenFileUnavailable)
        {
            request = (FtpWebRequest)WebRequest.Create(ip + path[2]);
            request.Credentials = new NetworkCredential(acc, pwd);
            request.Method = WebRequestMethods.Ftp.MakeDirectory;
            request.UsePassive = true;
            request.UseBinary = true;
            request.KeepAlive = false;
            request.GetResponse();
            result = true;
        }
        else
        {
            result = false;
        }
    }

    if (result == true)
        return path[2];
    else
        return null;
}
4

1 回答 1

0

我发现我有办法检查存在的目录。然后,我使用Containswith ListDirecotyDetails

这是我的功能:

protected string CheckDir(string fullpath, string c_ip, string c_acc, string c_pwd)
        {
            string[] path = fullpath.Split(slash[1]);

            bool result = false;

            try
            {
                if (WebRequestMethods.Ftp.ListDirectoryDetails.Contains(c_ip + path[2]))
                {
                    result = true;
                }
                else
                {
                    FtpWebRequest request = (FtpWebRequest)(WebRequest.Create(c_ip + path[2]));
                    request.Credentials = new NetworkCredential(c_acc, c_pwd);
                    request.Method = WebRequestMethods.Ftp.MakeDirectory;
                    request.KeepAlive = false;
                    try
                    {
                        FtpWebResponse response = (FtpWebResponse)request.GetResponse();
                        response.Close();
                    }
                    catch (Exception)
                    {
                        request.Abort();
                        result = false;
                    }
                    request.Abort();
                    result = true;
                }
            }
            catch (Exception ex)
            {
                System.Windows.Forms.MessageBox.Show(ex.Message);
            }

            if (result == true)
                return path[2];
            else
                return null;
        }
于 2013-07-06T16:42:12.547 回答