How to RENAME or MOVE file with Vb???
Posted: 2002-06-01
By: ArchiveBot
Viewed: 85
Filed Under:
No attachments for this post
After some quick search I realized that very few in PSC knows how to rename file with VB. So here it is...
Original Author: JJJJJJJJ
Code
'------------------------------------------------
' Auther : Jim Jose
' Email : jimjosev33@yahoo.com
' Purpose : File renaming with vb
'------------------------------------------------
' Very Easy..
' >>>Name [Source] As [Destination]<<<
'------------------------------------------------
Private Sub cmdTest_Click()
'SampleCode:
'Rename file in D:About.txt to D:Me.txt
'Use...
Name "D:About.txt" As "D:Me.txt"
'SampleCode:
'Movefile file from D:About.txt to C:About.txt
'Use...
Name "D:About.txt" As "C:About.txt"
'Thats it... So never use FileCopy..
'with Kill.. to rename files.
'Jim Jose :-))
End Sub
Comments on this post
No comments have been added for this post.
You must be logged in to make a comment.