VB更新文件名。
如: d:/1.exe 点击 command1 后 更改 2.exe .而切不会出现提示/
应该怎么弄。谢谢了。
VB更新文件名。
如: d:/1.exe 点击 command1 后 更改 2.exe .而切不会出现提示/
应该怎么弄。谢谢了。
Private Sub Command1_Click()
Dim path As String
path = "d:\1.exe"
If Dir(path) <> "" Then '判断文件是否存在
Name path As "d:\2.exe" '存在才重命名,防止出错
End If
End Sub
Private Sub Command1_Click() Name "d:\1.exe" As "d:\2.exe" End Sub