Tech Support Guy banner

Run CMD for movinf pdf files to sub folders

876 Views 2 Replies 2 Participants Last post by  Kamalkanth
I have some pdf files under the folder all pdf (folder path : C:\Users\Skamalkanth\Desktop\Native Files\General\PDF Files)
and I want move all the pdf files in to sub folders created in (C:\Users\Skamalkanth\Desktop\Native Files\General\PDF Files)
can anyone please help me to move these files using CMD

for example subfolder - "C:\Users\Skamalkanth\Desktop\Native Files\General\PDF Files\Bridge GOSP-2" only below selected pdf files should move. RA439538001_00.pdf, RA439539001_00.pdf, RA439541001_00a.pdf
Status
Not open for further replies.
1 - 3 of 3 Posts
any reason to do in CMD ?

heres how to setup move
http://www.easydos.com/move.html
http://www.computerhope.com/movehlp.htm

Use CD to goto the folder

CD C:\Users\Skamalkanth\Desktop\Native Files\General\PDF Files
Move RA439538001_00.pdf C:\Users\Skamalkanth\Desktop\Native Files\General\PDF Files\Bridge GOSP-2

OR from what ever folder you are in

MOVE
C:\Users\Skamalkanth\Desktop\Native Files\General\PDF Files\RA439538001_00.pdf
C:\Users\Skamalkanth\Desktop\Native Files\General\PDF Files\Bridge GOSP-2

you can use wild cards * and ? for specific characters locations in the file
MOVE
C:\Users\Skamalkanth\Desktop\Native Files\General\PDF Files\*.pdf
C:\Users\Skamalkanth\Desktop\Native Files\General\PDF Files\Bridge GOSP-2

will move ALL pdfs
MOVE
C:\Users\Skamalkanth\Desktop\Native Files\General\PDF Files\RA*.pdf
C:\Users\Skamalkanth\Desktop\Native Files\General\PDF Files\Bridge GOSP-2

will move all PDF files with RA at the beginning
See less See more
Thanks for the reply I will try this..!!
1 - 3 of 3 Posts
Status
Not open for further replies.
Top