使用下面的代码,但它根本没有将任何文件下载到名为 myImages 的指定子文件夹到应用程序......我该如何解决这个问题?该链接在这里纯粹是一个示例,通常该链接将是一个变量,并且填充自身没有问题。这一切都在 BackgroundWorker 中完成,否则 100% 可以正常工作。
//File to download
string _fileToDownload = "http://www.codeproject.com/images/download24.png"
//Path to download files
string _filePath = Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location) + "MyImages\\download24.png'";
//Download the image
using (var webClient = new WebClient())
{
webClient.DownloadFileAsync(new Uri(_fileToDownload ), @_filePath);
}
谢谢。