gpt4 book ai didi

c# - 将同步方法转为异步(FTP/上传)

转载 作者:太空宇宙 更新时间:2023-11-03 10:47:45 29 4
gpt4 key购买 nike

我需要通过 FTP 将文件上传到我的服务器,但现在已经不是 1995 年了,所以我想我可能想让它异步或在后台上传文件,以免使 UI 变得无响应。

来自 this 的代码页面有一个通过 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();
}
}
}
}

我应该把它扔进 BackgroundWorker 吗?

注意事项:

我不需要知道传输/上传的进度。我只需要知道状态(正在上传或已完成)。

最佳答案

Should I just throw it into a BackgroundWorker?

没有。这些类型的操作受 I/O 限制。在等待下载响应流/读取文件时,您会浪费一个线程池线程。

您应该考虑使用 async versions of the methods you've used above以及 async/await 的魔力。这将使您免于浪费线程池线程,而是依靠 I/O 完成来完成任务。

关于c# - 将同步方法转为异步(FTP/上传),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22799532/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com