Say you have 100 directories and for each directory you have a file named .pdf stored somewhere else. If you want to move/copy each file into the directory with the same name, can this be done on the Windows command line?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
This is a batch script that probably does what you want:
|
|||
|
|
|
You can do it using the FOR command. Something in the line of:
If you have a list of the file names w/ full path in a text file, say files.txt, you can also do
|
|||
|
|
|
From the command line:
As it's on a command line and not in a batch file you only need %, not %%. dir /s /b is recursive and bare. (see dir /?) The @ before copy stops the echo of each copy command. You can echo them if you like, up to you. %~nxf gets the name and extension of %f. (see call /?) |
|||
|
|
|
You would need to write a script to iterate through each file (and its path), extract the filename-'.pdf' and then move the file to the directory of the same name |
|||
|
|
