Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have .xml file in my folder.
I want to specifically transfer them to another folder.

For Example:


FOLDER A:

2012P02B.XML
2012P02B.XML
2012PCXB.XML
2012P80K.XML
2012PC6H.XML
2012P93L.XML
2012P02X.XML

I want to transfer all of the others except to "2012P02B.XML" to FOLDER B.

Help me please. Thanks and Regards!
Posted
Updated 5-Dec-12 21:46pm
v2

If you want to move all files except one single file, you can rename it before moving the other files and restore it when your done.

set KEEPFILE=2012P02B.XML
set TARGETDIR=C:\FOLDERB

ren %KEEPFILE% %KEEPFILE%.kept
move *.XML %TARGETDIR%
ren %KEEPFILE%.kept %KEEPFILE%
 
Share this answer
 
v2
Use the wildcards: "*" is "any text", "?" is "any character"
Try:
copy 2012P02?.XML C:\FOLDERB
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900