這是我的代碼:一直等到下載結束
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);
}
在此代碼程序下載所有更新的一次... 它開始分解下載完成的第一個。 我需要應用程序一次只下載一個更新,然後對其進行分析。
你在做什麼麻煩?你試圖做這個你自己有什麼問題? –