Hi

Iīm doing some local drive file moves and make this script:

***************
$source = "c:\source_dir\"
$destination = "c:\destination_dir\"

SHELL "%COMSPEC% /e:1024 /c ROBOCOPY.EXE $source $destination /E /MOVE /r:2 /w:2"
***************

It works fine with directories without spaces...
But when trying to copy dir with spaces it wonīt work..

***************
$source = "c:\Documents And Settings\User.old\My Documents\"
$destination = "c:\Documents And Settings\User.new\My Documents\"

SHELL "%COMSPEC% /e:1024 /c ROBOCOPY.EXE $source $destination /E /MOVE /r:2 /w:2"
***************

I have tryed CHR(34) etc. without succeed.
So please, KixScript Guruīs, "Pimīp Up My Script"

Henry