Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何将文件从我的 WinForms .exe 应用程序上传到我的服务器。我试过了:My.Computer.Network.UploadFile(myFile, myServer)但我收到此错误“远程服务器返回错误:(404)未找到。” 有人知道从.exe 将文件上传到我的服务器的另一种方法吗?谢谢。
My.Computer.Network.UploadFile(myFile, myServer)
我正在使用 VB 和 .Net Framework 4
这是另一种方式,但听起来您上传到了错误的页面(HTTP 错误 = 404)。 检查您的网址。
Dim fileName As String = AskUserForFileName() Dim web As New WebClient() web.UploadFile(uriString, fileName)