Reputation: 1
I'm trying to copy and rename a pdf from my scanner, but the copied file (using the below command) is corrupt. Is there a trick to making this work? I have about 10 scans that I need to copy to like 60 names, so I'd rather not do it by hand. Thanks in advance.
copy c:\users\me\desktop\test.pdf > c:\users\me\desktop\test2.pdf
Upvotes: 0
Views: 889
Reputation: 7095
Remove the >
you don't need it. I tested and just copy c:\users\me\desktop\test.pdf c:\users\me\desktop\test2.pdf
works just fine.
Upvotes: 2