Tech Support Guy banner
Status
Not open for further replies.

Run CMD for movinf pdf files to sub folders

967 views 2 replies 2 participants last post by  Kamalkanth 
#1 ·
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
 
#2 ·
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
 
Status
Not open for further replies.
You have insufficient privileges to reply here.
Top