所以我在vb.net下载文件时遇到了一些问题。它是一个自动更新程序,但它不会完全下载它。当程序大约2 MB时,它的文件大小只有几KB。这是我目前的代码:
Try
My.Computer.Network.DownloadFile("dropboxlink directly to the file 'dl=1'", My.Computer.FileSystem.SpecialDirectories.MyDocuments & "/Updated/" & LatestVersion & ".exe")
MsgBox("The update has been downloaded!" & vbNewLine & "The application will now Exit and Re-open with the new version! :D")
Diagnostics.Process.Start(My.Computer.FileSystem.SpecialDirectories.MyDocuments & "/Updated/" & LatestVersion & ".exe")
Application.Exit()
Catch ex As Exception
MsgBox("OH MY! An error occured while trying to download the update.")
End Try
我只是不明白为什么会这样做。它非常恶化! 任何人在某些时候都有同样的问题,知道该怎么做才能解决它或者我做错了什么?
-thanks,尼克