It is parameters for integration between copy tools and file manager.
First one is for copying files.
Second one is for moving files.
===========================================
= Speed Commander & Copy tools =
ExtremeCopy:
-src $(ActSel) -dst $(InactDir) -exe copy
-src $(ActSel) -dst $(InactDir) -exe move
FastCopy:
/open_window /auto_close /estimate $(ActSel) /to=$(InactDir)
/cmd=move /open_window /auto_close /estimate $(ActSel) /to=$(InactDir)
Super/Ultracopier:
cp $(ActSel) $(InactDir)
mv $(ActSel) $(InactDir)
TeraCopy:
copy *$(ActSelLstU8) $(InactDir)
move *$(ActSelLstU8) $(InactDir)
*U8 means UTF-8.
Change it with U16 for UTF-16 languages.
Macro version: (It has problem with UTF-8 and UTF-16 languages.)
===========================================
= Directory Opus & Copy tools =
ExtremeCopy:
-src {allfilepath$} -dst {destpath} -exe copy
-src {allfilepath$} -dst {destpath} -exe move
FastCopy:
/open_window /auto_close /estimate {allfilepath$} /to={destpath}
/cmd=move /open_window /auto_close /estimate {allfilepath$} /to={destpath}
Super/Ultracopier:
cp {allfilepath$} {destpath}
mv {allfilepath$} {destpath}
TeraCopy:
copy *{allfilepath|filem} {destpath}
move *{allfilepath|filem} {destpath}
===========================================
= FreeCommander XE & Copy tools =
ExtremeCopy: (It has problem with source and destination.)
-src %ActivSel% -dst "%InactivDir%" -exe copy
-src %ActivSel% -dst "%InactivDir%" -exe move
FastCopy: (It has problem with source and destination.)
/open_window /auto_close /estimate %ActivSel% /to="%InactivDir%\"
/cmd=move /open_window /auto_close /estimate %ActivSel% /to="%InactivDir%\"
Super/Ultracopier:
cp %ActivSel% "%InactivDir%"
mv %ActivSel% "%InactivDir%"
TeraCopy:
copy *%ActivSelAsFile% "%InactivDir%"
move *%ActivSelAsFile% "%InactivDir%"
===========================================
= Total Commander & Copy tools =
ExtremeCopy:
-src %P%S -dst "%T" -exe copy
-src %P%S -dst "%T" -exe move
FastCopy:
/open_window /auto_close /estimate %P%S /to="%T"
/cmd=move /open_window /auto_close /estimate %P%S /to="%T"
Super/Ultracopier:
cp %P%S "%T"
mv %P%S "%T"
TeraCopy:
copy *"%L" "%T"
move *"%L" "%T"
===========================================
'English version' 카테고리의 다른 글
Windows product key activation cmd (0) | 2017.06.20 |
---|---|
EternalBlue security update check and download cmd (0) | 2017.06.20 |
WannaCry Ransomeware Exploit SMBv1 Turn off cmd (0) | 2017.06.20 |
Radeon HD 4000 series Underscan Fix cmd (0) | 2017.06.20 |
WannaCry Ransomeware Patch (MS17-010) (0) | 2017.06.20 |