Originally Posted by ixtab
Use the correct folder.
If it's c:\ebooks\, then use "c:\ebooks\*.*"; if it's c:\users\carol\my ebooks, then use "c:\users\carol\my ebooks\*.*", etc.
If the path contains spaces, don't forget to put quotes around it, as shown above.
Ah. and no, don't remove the for loop by yourself. It should look something like this:
Code:
C:\Users\Carol\DRM Check>for %a in ("c:\users\carol\my ebooks\*.*") do drmcheck.py "%a"
|