amerifax
Technical User
- Dec 28, 2006
- 37
I have a table that I would like to copy across the network using a PRG.
Thanks for the help.
Bob
Thanks for the help.
Bob
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
* 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)
* 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