Copy file as

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello.
I have an Access 2003 db that uses a .txt file to create a table. The
original file is a .xml file, but i need to save it as .txt file in order to
import the file correctly.
How can i programmatically save the .xml file as .txt ?

Thanks.
 
Use the fileCopy Command

FileCopy "Source + Name" , "Location + name"

FileCopy "c:\FileName.xml","c:\FileName.txt"
 
Back
Top