I need to know how I can rename files.
Thats all, very simple you would think.
Printable View
I need to know how I can rename files.
Thats all, very simple you would think.
Gl,Code:Name "C:\Thing.exe" As "C:\Thing2.exe"
D!m
You need a filelistbox. And you can use the Name function.
FileListBox code:Code:Name "C:\myfile.txt" As "C:\thafile.txt"
Code:On Error Resume Next
File1.ListIndex = 0
For i = 0 to File1.ListCount
Name File1 As File1 & File1.ListIndex
File1.ListIndex = File1.ListIndex + 1
Next i