Move a file using MoveFile API
Move a file using MoveFile API
Rate Move a file using MoveFile API
(1(1 Vote))
Dim retval As Long ' return value
retval = MoveFile("D:\showagent.txt", "D:\showagent1.txt")
If retval = 0 Then
MsgBox "File not found"
Else
MsgBox "File Move successful"
End If
End
End Sub
Move a file using MoveFile API Comments
No comments yet — be the first to post one!
Post a Comment