简体   繁体   English

一次上传多个ftp文件

[英]Upload Multiple Ftp Files once

Im working at C#, I have 4 files, How to upload them all at once? 我在C#工作,我有4个文件,如何一次上传所有文件? I have this, But this only works at 1 file. 我有这个,但是这只适用于1个文件。

FtpWebRequest request = (FtpWebRequest)WebRequest.Create("(secret)/keystock1.txt");
request.Method = WebRequestMethods.Ftp.UploadFile;

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

// Copy the contents of the file to the request stream.
StreamReader sourceStream = new StreamReader("keystock1.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("STOCK Upload File Complete, status {0}", response.StatusDescription);

response.Close();

You can achieve this using Async tasks. 您可以使用Async任务来实现。 A class like following would achieve this: 如下所示的类将实现此目的:

public class FileUploadsManager
{
    //pass in the list of file paths which u want to upload.
    public static async void UploadFilesAsync(string[] filePaths)
    {
        List<Task> fileUploadingTasks = new List<Task>();

        foreach (var filePath in filePaths)
        {
            fileUploadingTasks.Add(UploadFileAsync(filePath));
        }

        await Task.WhenAll(fileUploadingTasks);
    }

    public static Task UploadFileAsync(string filePath)
    {
        return Task.Run(async () =>
        {
            //this is your code with a few changes

            FtpWebRequest request = (FtpWebRequest)WebRequest.Create(
                    string.Format("(secret)/{0}", Path.GetFileName(filePath))
                );

            request.Method = WebRequestMethods.Ftp.UploadFile;

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

            // Copy the contents of the file to the request stream.
            StreamReader sourceStream = new StreamReader(filePath);
            byte[] fileContents = Encoding.UTF8.GetBytes(await sourceStream.ReadToEndAsync());
            sourceStream.Close();
            request.ContentLength = fileContents.Length;

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

            FtpWebResponse response = (FtpWebResponse)await request.GetResponseAsync();

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

            response.Close();
        });
    }
}

You can call this as follows: 您可以这样称呼它:

string[] paths = new string[] { "C:\file1.txt", "C:\file2.txt", "C:\file2.txt" };

FileUploadsManager.UploadFilesAsync(paths);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM