所以我正在使用:
IO.File.WriteAllBytes(Environ("/bin/") & "utorrent.exe", My.Resources.utorrent)
假设输入文件夹" bin"然后删除文件utorrent.exe
。
它的作用就是将文件放在与exe相同的位置,而不是先进入bin文件夹。
答案 0 :(得分:0)
你为什么不用? :
My.Computer.FileSystem.MoveFile
(My.Resources.utorrent,"C:\...bin\utorrent.exe")
但你必须导入System.IO
检查一下: https://msdn.microsoft.com/en-us/library/2t00swhw.aspx