您好我试图制作一个程序,要求用户下载该文件,并在下载后自动保存/替换正在从其文件夹下载的文件到程序文件目录。
但似乎它没有工作,我花了5个小时搞清楚发生了什么,但仍然没有运气,有人可以帮助我吗?
Dim webClient As New System.Net.WebClient()
AddHandler webClient.DownloadProgressChanged, AddressOf progressChanged
AddHandler webClient.DownloadFileCompleted, AddressOf downloadComplete
webClient.DownloadFileAsync(New Uri("WWW.MYURL.COM"), Environment.SpecialFolder.ProgramFiles & "\MYDIRECTORYFOLDERFROMPROGRAMFILES\")
我的代码有什么问题吗?
我也尝试将当前的环境位置声明为像这样的字符串
dim currentFile as string
dim currentFile = Environment.SpecialFolder.ProgramFiles
并将其替换为
webClient.DownloadFileAsync(New Uri("WWW.MYFILEFROMWEBSIE.COM"), currentFile)
但它仍然没有帮助!