我的代码有问题。我想下载一些文件(我目前正在做一个补丁程序),但是文件太多了,我不想为所有文件创建一个字符串。
我想将链接存储在数组中。但是调试器说WebClient
. 这是我的代码(fájlNév
手段fileName
和fájlNévAlap
手段baseFileName
):更新代码:
<!-- language: lang-c# -->
WebClient myWebClient = new WebClient();
string[] remoteUrl = new string[2] { "https://www.dropbox.com/s/62tt9w194xefk7t/", " https://www.dropbox.com/s/spni307vmk4zng9/" };
string[] fájlNév = new string[2] { "alut.dll", "DevIL.dll" };
string fájlNévAlap = "BlackBox.dll", WebResource = null;
for(int i = 0; i < remoteUrl.Length; i++) {
for(int x = 0; x < fájlNév.Length; x++) {
WebResource = remoteUrl[i] + fájlNév[x];
MessageBox.Show(WebResource);
myWebClient.DownloadFile(WebResource,fájlNév[x]);
}
}
我能做些什么?怎么了?