所以我有这个功能来自动检查更新,它使用XML来检查更新。
代码如下:
foreach (XElement update in patchXml.Descendants("update"))
{
// Defines XElements, strings and ints
if (serverPatch > localPatch)
{
// Using webclient downloadAsync, downloads ALL newest patches, not just one (which is what I don't want it to do)
}
else
{
// Continues to program
}
}
然后DownloadFileCompleted处理文件并将其应用于需要更新的文件。
我怎样才能一次只下载一个文件?