I'm needing to append to file names a static letter (let's say the letter X) Ex: TT1PP2-A0.tif --> TT1PP2-A0X.tif
I know I can use the obj.MoveFile method but not sure how to go implement it to look at a specific folder and change all files in it. Thanks. This is what I've got:
Set FldCnt = objFd1.Files
For Each fl in FldCnt
objFSO.MoveFile fl, "X.tif"
Next
Set FldCnt = Nothing
I know I can use the obj.MoveFile method but not sure how to go implement it to look at a specific folder and change all files in it. Thanks. This is what I've got:
Set FldCnt = objFd1.Files
For Each fl in FldCnt
objFSO.MoveFile fl, "X.tif"
Next
Set FldCnt = Nothing