Hello all,
Im currently writing a small program that will be invoked has a scheduled task to back up all of the files froma directory on my C drive toa removable disk (F).
I've tried using the following;
system("copy c:\test\*.* f:\");
(which is basically what I did at the command prompt to achieve the same thing)
However when run the program runs it reports that the syntax of the command is incorrect
Any one seen this before or know why?
Nathan
Im currently writing a small program that will be invoked has a scheduled task to back up all of the files froma directory on my C drive toa removable disk (F).
I've tried using the following;
system("copy c:\test\*.* f:\");
(which is basically what I did at the command prompt to achieve the same thing)
However when run the program runs it reports that the syntax of the command is incorrect
Any one seen this before or know why?
Nathan
Comment