how to copy fast to a Hard Drive

English support forum

Moderators: white, Hacker, petermad, Stefan2

Post Reply
LeoLUG
Junior Member
Junior Member
Posts: 17
Joined: 2020-05-22, 15:24 UTC

how to copy fast to a Hard Drive

Post by *LeoLUG »

Hi,
I have a single folder on my SSD, with more than 100.000 files, a total of 850 GB, and i need to copy it to a few Hard Drive,
what should be the fastest way to do it?
direct with TC, or any plugin, or something else?
risk
Junior Member
Junior Member
Posts: 85
Joined: 2007-07-30, 03:18 UTC

Re: how to copy fast to a Hard Drive

Post by *risk »

I am also interested in reading other people's response. In the past, in addition to just using TC Copy, I also used TeraCopy and FastCopy.
User avatar
nsp
Power Member
Power Member
Posts: 1804
Joined: 2005-12-04, 08:39 UTC
Location: Lyon (FRANCE)
Contact:

Re: how to copy fast to a Hard Drive

Post by *nsp »

You will have no Magic !

For most of my LARGE copy/move i pefer to use fastcopy integration using list file and some parameters.

Code: Select all

cmd=<path to>>\fastcopy.exe 
parameters=/no_exec /cmd=force_copy /auto_close  /open_window /speed=full  /srcfile_w=%WL /to="%T"
if you are confident, you can use the no_ui option

If the target is to copy to multiple destinations at once MoveQueue is also an option.
LeoLUG
Junior Member
Junior Member
Posts: 17
Joined: 2020-05-22, 15:24 UTC

Re: how to copy fast to a Hard Drive

Post by *LeoLUG »

nsp wrote: 2020-06-04, 07:56 UTC You will have no Magic !

For most of my LARGE copy/move i pefer to use fastcopy integration using list file and some parameters.

Code: Select all

cmd=<path to>>\fastcopy.exe 
parameters=/no_exec /cmd=force_copy /auto_close  /open_window /speed=full  /srcfile_w=%WL /to="%T"
if you are confident, you can use the no_ui option
Thanks,
Can you please explain more detailed how to use this code?
risk
Junior Member
Junior Member
Posts: 85
Joined: 2007-07-30, 03:18 UTC

Re: how to copy fast to a Hard Drive

Post by *risk »

1. Install FastCopy on your PC.
2. Drag FastCopy.exe onto TotalCommander's button bar.
3. Right-click the button and select Change
4. Edit the button and add the parameters suggested by @usp starting with /no_exec....

You can also use a portable copy of FastCopy (program files copied to PC without installing it), as detailed in PortableFreeware.
User avatar
nsp
Power Member
Power Member
Posts: 1804
Joined: 2005-12-04, 08:39 UTC
Location: Lyon (FRANCE)
Contact:

Re: how to copy fast to a Hard Drive

Post by *nsp »

risk wrote: 2020-06-07, 00:04 UTC 1. Install FastCopy on your PC.
2. Drag FastCopy.exe onto TotalCommander's button bar.
3. Right-click the button and select Change
4. Edit the button and add the parameters suggested by @usp starting with /no_exec....

You can also use a portable copy of FastCopy (program files copied to PC without installing it), as detailed in PortableFreeware.
fastcopy is portable by itself as explained in the link and no need to use any portable launcher (portableapps.com).
LeoLUG wrote: 2020-06-04, 14:10 UTC

Code: Select all

cmd=<path to>>\fastcopy.exe 
parameters=/no_exec /cmd=force_copy /auto_close  /open_window /speed=full  /srcfile_w=%WL /to="%T"
...
Thanks,
Can you please explain more detailed how to use this code?
The following code is to define a user command em_fastcopy or a button.
the commandd needs to point to fastcopy.exe.
the parameters are the parameter to launch fastcopy.

the parameter are the one of fastcopy all is explained in the help.
  • /no_exec let you wait and verify befor starting fastcopy tasks.
  • /cmd=force_copy define copy command.
  • [/open_window/b] show fastcopy UI if you want faster process you can use no_ui and remove no_exec
  • /speed=full full speed for same drive copy, diff mode is suitable for pendrive or slow network.
  • /srcfile_w=%WL TC pass a temporary file used to pass source files/folder to copy
  • [b/to=%T] target destination is other side of TC Only one target at the time...
If you use similar destination drive, you can take advantage of windows internal I/O cache and launch all fastcopy tasks at once.. (without forcing execution all fast copy tasks runs one after the other..)

Code: Select all

TOTALCMD#BAR#DATA
<path_to>\fastcopy.exe
?/no_exec /cmd=force_copy /auto_close  /open_window /speed=full  /srcfile_w=%WL /to="%T"
<path_to>\fastcopy.exe,4



-1
You can drag and drop this code to have a button but need to replace <path to> with the path where fastcopy is installed.

First ? is a way to have TC stop before launching fastcopy in order you can verify and/or change parrameters.
LeoLUG
Junior Member
Junior Member
Posts: 17
Joined: 2020-05-22, 15:24 UTC

Re: how to copy fast to a Hard Drive

Post by *LeoLUG »

thank you all, and specially *nsp for the detailed answer.
i tried to copy with FastCopy, it take'd me longer! With TC (F5; F2) it take'd me 2:40, and with FastCopy it takes 4 hours!!!
Post Reply