Search Results

2
votes

How do I copy files using Windows Batch?

The Xcopy command should help here. XCOPY /E SrcDir\*.* DestDir\ Or if you don't want any of the files in SrcDir, just the sub directories, you can use XCOPY in co …
4
votes

How do I copy files using Windows Batch?

Ok. With your edit that says you don't want the directory structure, i think you're going to want to use something like this: for /F "usebackq" %s IN (`DIR /B /S /A-D SrcDir`) DO @ …
1
vote

how can I save the output of windows internal FTP client?

Not sure what's happening to you. I'd check the batch file that's running it, or maybe how you're scheduling the job. The output is confusing as the error seems out of order, but redirecti …