Renaming Copying Existing Files

The Real Yoda

Registered User.
Local time
Today, 14:58
Joined
May 25, 2001
Messages
17
Basically what I want to do is copy a specific file from one destination to another and then rename it.

How Is This Done??
 
The Name command in VBA can do both at the same time; i.e.:

Name "C:\temp\Import.txt" As "C:\data\Import.dat"

HTH

Mike
 

Users who are viewing this thread

Back
Top Bottom