我试图检查我的 FTP 服务器上是否存在文件,但我收到错误“远程服务器返回错误:(550) 文件不可用”,而我的文件已经存在我确定这不是我的许可或错误的 ip 或错误的用户发生的, 因为我可以使用 FileZilla 使用 FTPUser20 编辑我的文件,并且我可以复制textBox4("textBox4.Text = (uploadto);")
并粘贴到我可以访问的浏览器中。这是我的代码
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;
MessageBox.Show(ex.Message);
}
return IsExists;
}
private void button6_Click(object sender, EventArgs e)
{
string uploadto;
severip = textBox1.Text;
username = textBox2.Text;
password = textBox3.Text;
uploadto = ("ftp://" + severip + ":1919/" + "IMG/"+ username + ".png");
textBox4.Text = (uploadto);
//check if exists
bool result = FtpDirectoryExists(uploadto, "FTPUser20", "12345");
}
请帮我。我的文件已经存在。