I download a copy software name fastcopy, and it gives a command line to execute copy files. The command :
Aşağıdaki gibi temel bir biçimidir.
fastcopy.exe [/options] file1 file2 ... [/to=dest_dir]
Please use space character(' ') as separator(not semicolon). If filename contains space character, please enclose with dobule quotation marks. Ex) fastopy.exe C:\Windows "C:\Program Files" /to="D:\Backup Folder\"
Supported options are as follows. (Please don't put space characters before and behind "=")
/cmd=(noexist_only|diff|update|sync|force_copy|move|delete) ... Specify operation mode. (By default, diff mode is used. If delete mode is specified, then "/to=" option isn't used.)
Yani, fastcopy.exe yürütmek için benim özgün kod oldu:
// fastcopy the software folder
$cmd = 'D:\\fastcopy\\fastcopy.exe d:\\files.rar /to="e:\\"';
exec( $cmd,$result)
ama işe yaramadı gibi görünüyor.
Yani, nasıl çalıştırmak için?
fastcopy web sayfası
doğrudan link download sadece 300kb
Thank you very much!