Are you copying entire tables, or some/all records from an open table?
Code:
* File copy of a table/file (must be closed)
* dBase 5 for DOS handles only DOS 8.3 files - no spaces in folder names
SrceFile = "C:\myProd\myTable.dbf"
DestFile = "D:\myArch\myTable.dbf"
COPY FILE (SrceFile) TO (DestFile)
Code:
* DOS/CLI file copy of a table/file (must be closed)
SrceFile = "C:\myProd\myTable.dbf"
DestFile = "D:\myArch\myTable.dbf"
RUN COPY &SrceFile &DestFile
Note that UNC paths such as "\\ComputerName\ShareName\" can be substituted for the mapped drive letter designations such as "C:\" above.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.