Hi there i'm using the windows 7 'move' command like so:
move /Y "C:\old.sub.folder\folder.i.want.to.move" "F:\new.sub.folder\folder.i.want.to.move"
and i keep getting an 'accessed denied' error yet i have full permissions and the folder i'm trying to move isn't open or being uses?
a random example trying to move one empty folder to another: http://puu.sh/2Rx6b.png
any ideas?
thanks
Or you could try robocopy
with /MOVE
argument:
robocopy C:\old\folder F:\new\folder /E /MOVE