我正在尝试在我的驱动器C上的程序文件文件夹中创建复制/保存 .exe (app.exe)文件的应用程序资源。我已经尝试了几种方法来完成这个过程。但我的运气并没有帮助。我目前正在使用[Windows 7] Professional(已激活)。以下是我尝试的一些方法(包含在下面)。
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
更改为Dim path = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles)
Private Sub Spread(ByVal FilePath As String, ByVal File As Object)
Dim FByte() As Byte = File
Try
My.Computer.FileSystem.WriteAllBytes(FilePath, FByte, True)
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Spread(path, My.Resources.putty)
End Sub
这是我的代码,用于复制/保存.exe(包含在下方)
<div class="col-md-6 form-group">
<label for="edate">Expiration Date:</label>
<input type="date" class="form-control" ng-model="expdate" id="edate" placeholder="mm-dd-yyyy">
</div>
<div class="col-md-12 form-group">
<button type="submit" ui-sref="inventory({ expdate: expdate })" class="btn btn-primary">Add</button>
</div>
欣赏! Sifat,Dipta