Copying/Renaming Files

Copying/Renaming Files

Question:
How do I use a memory variable as a filename when copying and renaming a file?

Answer:
For sake of example, let’s say that you have a character variable called lcSourceFileName that contains the name of the file to copy, and a character variable called lcTargetFileName that contains the name of the file to copy to.

Either of the following two pieces of code will work:

 lcSourceFile = "D:ABC.TXT"lcTargetFile  = "D:XYZ.TXT"COPY FILE &lcSourceFileName TO &lcTargetFileNamelcSourceFile = "D:ABC.TXT"lcTargetFile  = "D:XYZ.TXT"COPY FILE (lcSourceFileName) TO (lcTargetFileName)

I prefer the second example because it is easier to extend than first; any FoxPro expression can get put between the parentheses:

 lcSourcePath = "D:"lcSourceFile = "ABC.TXT"lcTargetFile  = "D:"lcTargetFile  = "XYZ.TXT"COPY FILE (lcSourcePath+lcSourceFileName) TO (lcTargetPath+lcTargetFileName)

If you had two functions, GetSourcePath() and GetTargetPath(), you could execute the following:

COPY FILE (GetSourcePath()+lcSourceFileName) TO (GetTargetPath()+lcTargetFileName)

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular