这是我的代码:
Action<int, ProgressBar, Label, Label, int, Button> downloadFileAsync = (i, pb, label2, label1, ServID, button1) =>
{
var bd = AppDomain.CurrentDomain.BaseDirectory;
var fn = bd + "/" + i + ".7z";
var down = new WebClient();
DownloadProgressChangedEventHandler dpc = (s, e) =>
{
label1.Text = "Download Update: " + i + " / " + ServID;
int rec =Convert.ToInt16(e.BytesReceived / 1024);
int total =Convert.ToInt16(e.TotalBytesToReceive / 1024) ;
label2.Text = "Downloaded: " + rec.ToString() + "KB / " + total.ToString() + " KB";
pb.Value = e.ProgressPercentage;
};
AsyncCompletedEventHandler dfc = null; dfc = (s, e) =>
{
label1.Text = "Extracting Files...";
Rar Ra = new Rar();
Ra.Open(i + ".7z");
Ra.Unrar(AppDomain.CurrentDomain.BaseDirectory);
File.Delete(fn);
down.DownloadProgressChanged -= dpc;
down.DownloadFileCompleted -= dfc;
down.Dispose();
if (ServID == i)
{
button1.Enabled = true;
label1.Text = "Have Fun In-Game...";
label2.Text = "Done...";
}
};
down.DownloadProgressChanged += dpc;
down.DownloadFileCompleted += dfc;
down.DownloadFileAsync(new Uri("http://unknowndekaron.net/updatee/" + i + "/" + i + ".7z"), fn);
};
这是我的电话:
while (i <= ServID)
{
downloadFileAsync(i, progressBar1, label2, label1, ServID, button1);
i++;
}
解压:
public void Decompress(int i)
{
Rar Ra = new Rar();
Ra.Open(i + ".7z");
Ra.Unrar(AppDomain.CurrentDomain.BaseDirectory);
}
在此代码程序中,一次下载所有更新......它开始解压缩第一个下载完成的更新。我需要该应用程序一次只下载一个更新,然后对其进行解压缩。