|  | 
| 原帖由 dutt 于 2009-3-12 09:03 发表  谢谢,有没有命令行的?在Dos下能运行么?
 请看自带的帮助文件,A basic format is as follows.
 
 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.
 (In default, diff mode is used. If delete mode is specified, then "/to=" option isn't used.)
 cmdlinein GUInoexist_onlyDiff (No Overwrite)diffDiff (Size/date)updateDiff (update)force_copyCopy (Overwrite)syncSync (Size/date)moveMove (Overwrite)deleteDelete/auto_close ... Close automatically after execution is finished with no errors. 
 /force_close ... Close automatically and compulsorily after execution is finished.
 
 /open_window ... Don't stored in the task tray.
 
 /estimate ... Estimate complete time.
 
 /no_exec ... Don't start to execute.
 
 /no_confirm_del ... Don't confirm before deleting.
 
 /no_confirm_stop ... Don't Show error dialog, Even if critical errors occurred.
 
 /error_stop ... Show error dialog (and operation is interrupted), if an error occurred. (to disable, /error_stop=FALSE)
 
 /bufsize=N(MB) ... Specify the size(MB) of the main buffer for Read/Write opration.
 
 /log ... Write the operation/errors information to the logfile(fastcopy.log). (to disable, /log=FALSE)
 
 /logfile=filename ... Specify the filename of logfile.
 
 /utf8 ... Write to the logfile as UTF-8.
 
 /skip_empty_dir ... Skip to create empty directories when /include or /exclude option is used. (to disable, /log=FALSE)
 
 /job=job_name ... Specify the job that is already registered.
 
 /force_start ... Start at once without waiting for the finish of other FastCopy executing. (to disable, /log=FALSE)
 
 /disk_mode=(auto|same|diff) ... Specify Auto/Same/Diff HDD mode. (default: Auto)
 
 /speed=(full|autoslow|9-1(90%-10%)|suspend) ... Specify speed control level.
 
 /srcfile="files.txt" ... Specify source files by textfile. It is able to describe 1 filename as 1 line. (Attention: If a lot of files are specified, it will take many times to display/refresh Source combobox.)
 
 /srcfilew="files.txt" ... same as "/srcfile=", except describing by UNICODE.
 
 /include="..." ... Specify include filter. (details)
 
 /exclude="..." ... Specify exclude filter. (details)
 
 /acl ... Copy ACL (only NTFS) (to disable, /acl=FALSE)
 
 /stream ... Copy Alternate Stream (only NTFS) (to disable, /stream=FALSE)
 
 /wipe_del ... Rename filename and wipe(overwrite Random data) before deleting.
 
 /reparse ... Copy junction/mountpoint/symlink itself(to disable, /reparse=FALSE) (details)
 
 /verify ... Verify written files data by MD5(or SHA-1) (to disable, /verify=FALSE) (details)
 
 Ex) Copy C:\Test Folder to D:\Backup Folder by "diff(Size/Date)" mode is...
 fastcopy.exe /cmd=diff "C:\Test Folder" /to="D:\Backup Folder\"
 | 
 |