我正在尝试对我的 .NET 应用程序通过 FTP(s) 协议上传文件的功能进行压力测试。此函数使用 .NET 的内置FtpWebResponse
类(以防用户的服务器不支持 SSH 连接。)我正在使用以下代码尝试"test up1/archive: * OR | or $ or < and >."
在我的用户目录中的 Ubuntu 服务器上创建目录:
//First call succeeds
string strPath = "ftp://webhost.com/%2F/UserDir/" +
Uri.EscapeDataString("test up1") + "/";
createDirViaFTP(strPath);
//but then this call fails
strPath += Uri.EscapeDataString("archive: * OR | or $ or < and >.") + "/";
createDirViaFTP(strPath);
static bool createDirViaFTP(string strURI)
{
FtpWebRequest request = (FtpWebRequest)WebRequest.Create(strURI);
request.EnableSsl = bUseSsl; //can be either false or true
request.Credentials = = new NetworkCredential(strUsrName, secUsrPwd);
request.UseBinary = true;
request.Timeout = -1;
request.Method = WebRequestMethods.Ftp.MakeDirectory;
try
{
using (FtpWebResponse response = (FtpWebResponse)request.GetResponse())
{
if (response.StatusCode == FtpStatusCode.PathnameCreated)
{
//Created OK
return true;
}
}
}
catch(Exception ex)
{
//Failed
Console.WriteLine("EXCEPTION: Path=" + strURI + "\n" + ex.Message);
}
return false;
}
createDirViaFTP
当我尝试创建"archive: * OR | or $ or < and >."
目录时,对我的第二次调用会引发以下异常:
EXCEPTION: Path=ftp://webhost.com/%2F/UserDir/test%20up1/archive%3A%20*%20OR%20%7C%20or%20%24%20or%20%3C%20and%20%3E./
The remote server returned an error: (550) File unavailable (e.g., file not found, no access).
但为什么?我在这里做错了什么?第二个目录名中的所有这些符号都应该是合法的 Linux 文件名。我可以通过 SSH shell 创建相同的目录。