c# - 当当前用户目录不同于 root 时,无法使用 ftp 方法重命名文件

标签 c# ftp rename ftpwebrequest

备注:由于垃圾邮件预防机制,我被迫将 Uris 的开头从 ftp://替换为 ftp。

我遇到了以下问题。我必须使用 C# ftp 方法上传文件,然后重命名它。容易,对吧? :)

好吧,假设我的 ftp 主机是这样的:

ftp.contoso.com

登录后,当前目录设置为:

users/name

所以,我想要实现的是登录,将文件作为 file.ext.tmp 上传到当前目录,上传成功后,将文件重命名为 file.ext

我猜,整个困难在于为 FtpWebRequest 正确设置请求 Uri。

MSDN 声明:

The URI may be relative or absolute. If the URI is of the form "ftp://contoso.com/%2fpath" (%2f is an escaped '/'), then the URI is absolute, and the current directory is /path. If, however, the URI is of the form "ftp://contoso.com/path", first the .NET Framework logs into the FTP server (using the user name and password set by the Credentials property), then the current directory is set to UserLoginDirectory/path.

好的,所以我使用以下 URI 上传文件:

ftp.contoso.com/file.ext.tmp

太好了,文件位于我想要的位置:在目录“users/name”中

现在,我想重命名该文件,因此我使用以下 Uri 创建 Web 请求:

ftp.contoso.com/file.ext.tmp

并将参数重命名为:

file.ext

这给了我 550 错误:找不到文件、没有权限等。

我在 Microsoft 网络监视器中对此进行了跟踪,它给了我:

Command: RNFR, Rename from
CommandParameter: /file.ext.tmp
Ftp: Response to Port 53724, '550 File /file.ext.tmp not found'

好像它是在根目录中查找文件 - 而不是在当前目录中。

我使用 Total Commander 手动重命名了文件,唯一的区别是 CommandParameter 没有第一个斜杠:

CommandParameter: file.ext.tmp

我能够通过提供以下绝对 URI 成功重命名文件:

ftp.contoso.com/%2fusers/%2fname/file.ext.tmp

但我不喜欢这种方法,因为我必须知道当前用户目录的名称。它可能可以通过使用 WebRequestMethods.Ftp.PrintWorkingDirectory 来完成,但它增加了额外的复杂性(调用此方法来检索目录名称,然后组合路径以形成正确的 URI)。

我不明白的是为什么 URI ftp.contoso.com/file.ext.tmp 适用于上传而不适用于重命名?我在这里遗漏了什么吗?

项目设置为 .NET 4.0,在 Visual Studio 2010 中编码。

编辑

好的,我放置代码片段。

请注意ftp主机、用户名和密码要填写。要使此示例正常工作——即产生错误——用户目录必须不同于根目录(“pwd”-命令应返回不同于“/”的内容)

class Program
{
    private const string fileName = "test.ext";
    private const string tempFileName = fileName + ".tmp";
    private const string ftpHost = "127.0.0.1";
    private const string ftpUserName = "anonymous";
    private const string ftpPassword = "";
    private const int bufferSize = 524288;

    static void Main(string[] args)
    {
        try
        {
            string path = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), fileName);

            if (!File.Exists(path))
                File.WriteAllText(path, "FTP RENAME SAMPLE");

            string requestUri = "ftp://" + ftpHost + "/" + tempFileName;

            //upload

            FtpWebRequest uploadRequest = (FtpWebRequest)WebRequest.Create(requestUri);
            uploadRequest.UseBinary = true;
            uploadRequest.UsePassive = true;
            uploadRequest.Credentials = new NetworkCredential(ftpUserName, ftpPassword);
            uploadRequest.KeepAlive = true;
            uploadRequest.Method = WebRequestMethods.Ftp.UploadFile;

            Stream requestStream = null;
            FileStream localFileStream = null;


            localFileStream = File.OpenRead(path);
            requestStream = uploadRequest.GetRequestStream();
            byte[] buffer = new byte[bufferSize];

            int readCount = localFileStream.Read(buffer, 0, bufferSize);
            long bytesSentCounter = 0;

            while (readCount > 0)
            {
                requestStream.Write(buffer, 0, readCount);
                bytesSentCounter += readCount;
                readCount = localFileStream.Read(buffer, 0, bufferSize);
                System.Threading.Thread.Sleep(100);
            }

            localFileStream.Close();
            requestStream.Close();

            FtpWebResponse response = (FtpWebResponse)uploadRequest.GetResponse();
            FtpStatusCode code = response.StatusCode;
            string description = response.StatusDescription;
            response.Close();

            if (code == FtpStatusCode.ClosingData)
                Console.WriteLine("File uploaded successfully");

            //rename

            FtpWebRequest renameRequest = (FtpWebRequest)WebRequest.Create(requestUri);
            renameRequest.UseBinary = true;
            renameRequest.UsePassive = true;
            renameRequest.Credentials = new NetworkCredential(ftpUserName, ftpPassword);
            renameRequest.KeepAlive = true;
            renameRequest.Method = WebRequestMethods.Ftp.Rename;
            renameRequest.RenameTo = fileName;

            try
            {

                FtpWebResponse renameResponse = (FtpWebResponse)renameRequest.GetResponse();

                Console.WriteLine("Rename OK, status code: {0}, rename status description: {1}", response.StatusCode, response.StatusDescription);

                renameResponse.Close();
            }
            catch (WebException ex)
            {
                Console.WriteLine("Rename failed, status code: {0}, rename status description: {1}", ((FtpWebResponse)ex.Response).StatusCode, 
                    ((FtpWebResponse)ex.Response).StatusDescription);
            }

        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.ToString());
        }
        finally
        {
            Console.ReadKey();
        }
    }
}

最佳答案

我遇到过类似的问题。问题是 FtpWebRequest(错误地)在重命名请求前加上“/”,从这个日志(上传和重命名)中可以看出:

URL: 
  http://127.0.0.1/Test.txt
FTP log:
  STOR Test.txt.part
  RNFR /Test.txt.part
  RNTO /Test.txt

请注意,只有在上传到根目录时才会出现此问题。如果您将 URL 更改为 http://127.0.0.1/path/Test.txt,那么一切都会正常进行。

我对这个问题的解决方案是使用 %2E(点)作为路径:

URL:
  http://127.0.0.1/%2E/Test.txt
FTP log:
 STOR ./Test.txt.part
 RNFR ./Test.txt.part
 RNTO ./Test.txt

您必须对点进行 url 编码,否则 FtpWebRequest 会将路径“/./”简化为“/”。

关于c# - 当当前用户目录不同于 root 时,无法使用 ftp 方法重命名文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3035610/

相关文章:

iphone - 复制工作应用程序并删除和重命名内容以制作新应用程序?

linux - Bash根据另一个文件中的行重命名多个文件

使用R重命名文件夹中的多个文件

c# - 如何通过Stomp.js设置回复主题

c# - 为什么异步方法需要等待

objective-c - 如何使用 AsyncSocket 通过网络传输大文件/目录

scripting - WinSCP 命令行被动模式

java - 如何在FtpMessageHandler中设置目标目录?

c# - 通过 Google Calendar API v3 创建重复事件

c# - 访问派生类中事件的选项有限?