Hello-
I'm seeking the DOS syntax to copy a access database from lets say Z:\Data\Test.mdb to C:\Temp
How can I do this?
many thanks.
Hello-
I'm seeking the DOS syntax to copy a access database from lets say Z:\Data\Test.mdb to C:\Temp
How can I do this?
many thanks.
copy Z:\Data\Test.mdb C:\Temp
TIP:
When you're not sure what command to use in DOS, bring up a command prompt and type help
. Also, if you see a command you want to know more about, you can type the command followed by /? and you'll get the help for it. For example, typing copy /?
will show you the usage.
Depending on your operating system version, you might want to look at XCOPY or ROBOCOPY which provide some more advanced file/folder copying features.