user3420646
user3420646

Reputation: 1

corrupted PDF files from batch copy

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

Answers (1)

Matt Williamson
Matt Williamson

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

Related Questions