gpt4 book ai didi

c# - 等待 DownloadFileAsync 完成下载,然后执行某些操作

转载 作者:太空宇宙 更新时间:2023-11-03 15:41:07 30 4
gpt4 key购买 nike

所以基本上我的下载文件是:

public void DownloadFile()
{
settings_btn.Enabled = false;
label1.Text = "Checking for updates...";
//Defines the server's update directory
string Server = "http://downloadurl/update/";

//Defines application root
string Root = AppDomain.CurrentDomain.BaseDirectory;

//Make sure version file exists
FileStream fs = null;
if (!File.Exists("pversion"))
{
using (fs = File.Create("pversion")){}
using (StreamWriter sw = new StreamWriter("pversion")){sw.Write("1.0");}
}
//checks client version
string lclVersion;
using (StreamReader reader = new StreamReader("pversion"))
{
lclVersion = reader.ReadLine();
}
decimal localVersion = decimal.Parse(lclVersion);

//server's list of updates
XDocument serverXml = XDocument.Load(@Server + "pUpdates.xml");

//The Update Process
foreach (XElement update in serverXml.Descendants("pupdate"))
{
string version = update.Element("pversion").Value;
string file = update.Element("pfile").Value;

decimal serverVersion = decimal.Parse(version);


string sUrlToReadFileFrom = Server + file;

string sFilePathToWriteFileTo = Root + file;

if (serverVersion > localVersion)
{
using (webClient = new WebClient())
{
webClient.DownloadFileCompleted += new AsyncCompletedEventHandler(Completed);
webClient.DownloadProgressChanged += new DownloadProgressChangedEventHandler(ProgressChanged);

// The variable that will be holding the url address (making sure it starts with http://)
Uri url = new Uri(sUrlToReadFileFrom);

// Start the stopwatch which we will be using to calculate the download speed
sw.Start();

try
{
// Start downloading the file
webClient.DownloadFileAsync(url, sFilePathToWriteFileTo);

// Change the currently running executable so it can be overwritten.
Process thisprocess = Process.GetCurrentProcess();
string me = thisprocess.MainModule.FileName;
string bak = me + ".bak";
if (File.Exists(bak))
{
File.Delete(bak);
}
File.Move(me, bak);
File.Copy(bak, me);

//unzip
using (ZipFile zip = ZipFile.Read(file))
{
foreach (ZipEntry zipFiles in zip)
{
zipFiles.Extract(Root + "\\", true);
}
}

//download new version file
webClient.DownloadFile(Server + "pversion.txt", @Root + "pversion");

//Delete Zip File
deleteFile(file);

var spawn = Process.Start(me);
thisprocess.CloseMainWindow();
thisprocess.Close();
thisprocess.Dispose();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
}
}
}

我的问题是,一旦它找到新版本并开始下载文件 webClient.DownloadFileAsync(url, sFilePathToWriteFileTo);,它会立即运行下面的代码,即更改名称、解压缩和下载新版本文件进度

我想让它做的是等待它完成文件下载,然后再做剩下的事情。我该怎么做?

-- 如果有必要,ProgressChanged:

private void ProgressChanged(object sender, DownloadProgressChangedEventArgs e)
{
label3.Text = string.Format("{0} kb/s", (e.BytesReceived / 1024d / sw.Elapsed.TotalSeconds).ToString("0.00")) + " " + string.Format("{0} MB's / {1} MB's", (e.BytesReceived / 1024d / 1024d).ToString("0.00"), (e.TotalBytesToReceive / 1024d / 1024d).ToString("0.00"));;
progressBar1.Value = e.ProgressPercentage;
label1.Text = e.ProgressPercentage.ToString() + "%";
}

并完成:

private void Completed(object sender, AsyncCompletedEventArgs e)
{
sw.Reset();
if (e.Cancelled == true)
{
label1.Text = "Download cancelled!";
}
else
{
label1.Text = "Download completed!";
}
}

最佳答案

您可以使用 DownloadFile 方法。 Async 一词表示此方法将异步运行(在其他线程中),这就是为什么它几乎立即转到下一行的原因。如果您想等待下载结束,请使用 DownloadFile 而不是 DownloadFileAsync

关于c# - 等待 DownloadFileAsync 完成下载,然后执行某些操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30226734/

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