views:

78

answers:

1

Hi,

can anyone please tell me how to move a folder from one path to another path using batch script?

For ex: I want to move XXX folder(including the contents) from D:\abc\XXX folder to D:\cef\

Regards, Orbit

+2  A: 

How about the plain old-fashioned:

move d:\abc\XXX d:\cef\XXX
Carl Norum