Sep 14, 2001 #1 MikeUK Programmer Sep 7, 2001 5 GB I need to find a piece of VBA code that copies a file and then can rename the copied file. Has anyone got any ideas? thanxs.
I need to find a piece of VBA code that copies a file and then can rename the copied file. Has anyone got any ideas? thanxs.
Sep 14, 2001 #2 dsi Programmer Mar 13, 2000 964 US Use the FileCopy method: Code: FileCopy "C:\temp\old.txt", "C:\temp\new.txt" Upvote 0 Downvote