上传到FTP中的文件夹?

时间:2013-12-31 22:15:29

标签: c# ftp

我使用以下代码来学习如何使用FTP加载文件。如何设置将文件上传到的路径或文件夹?

using System;
using System.IO;
using System.Net;
using System.Text;

namespace Examples.System.Net
{
    public class WebRequestGetExample
    {
        public static void Main ()
        {
            // Get the object used to communicate with the server.
            FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://www.contoso.com/test.htm");
            request.Method = WebRequestMethods.Ftp.UploadFile;

            // This example assumes the FTP site uses anonymous logon.
            request.Credentials = new NetworkCredential ("anonymous","janeDoe@contoso.com");

            // Copy the contents of the file to the request stream.
            StreamReader sourceStream = new StreamReader("testfile.txt");
            byte [] fileContents = Encoding.UTF8.GetBytes(sourceStream.ReadToEnd());
            sourceStream.Close();
            request.ContentLength = fileContents.Length;

            Stream requestStream = request.GetRequestStream();
            requestStream.Write(fileContents, 0, fileContents.Length);
            requestStream.Close();

            FtpWebResponse response = (FtpWebResponse)request.GetResponse();

            Console.WriteLine("Upload File Complete, status {0}", response.StatusDescription);

            response.Close();
            }
        }
    }
}

1 个答案:

答案 0 :(得分:5)

该文件夹是您在创建request时设置的网址的一部分:"ftp://www.contoso.com/test.htm"。如果您使用"ftp://www.contoso.com/wibble/test.htm",则该文件将上传到名为wibble的文件夹。

您可能需要先使用Method = WebRequestMethods.Ftp.MakeDirectory的请求制作wibble文件夹(如果该文件夹尚不存在)。