you can also try xcopy command by using Shell to move/copy files/folders
from one place to another
here is the
code:
<?php
exec('xcopy c:\\myfolder d:\\myfolder /e/i',
$a, $a1);
?>
by executing this command, it will move folder
along with all contents to destination.
-adnan