Posteingang <[EMAIL PROTECTED]> wrote:
>   $cmd_commando = "cmd /c xcopy C:\php\INPUT\* C:\php\OUTPUT\* /w /f
> /i /s /e /h /y";

You need to escape your backslashes...

$cmd_commando = "cmd /c xcopy C:\\php\\INPUT\\* C:\\php\\OUTPUT\\* /w /f /i
/s /e /h /y";

Also, make sure the account Apache is running as has the permissions
required to perform that copy.

--
Stuart


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to