Where Do I Add TeraCopy?

I'd like to add TeraCopy (TC) to Directory Opus (DO) but I am lost as to where to "paste" TC.

The instructions state:

Copy this code to the clipboard, go to the Directory Opus, and
paste "Copy" button to the toolbar in the Customize mode.

I can't find "Customize" anywhere except in "Settings ⇾ Customize ToolbarsToolbars" and I can't understand it.

it's the

paste "Copy" button to the toolbar in the Customize mode.

that I don't get!

I have version 11.4 of Directory Opus and TeraCopy 3.25

TIA,
~r
 



1 Like

First click somewere in an empty spot in your listers toolbar area, until 'customize' appears.
Choose > 'New' > 'New Button'. After another right click in that area a new button will apear. You right click it then, choose Edit.

The button command editor will pop up. Give the button a label (name) in the upper field, and paste your code into the large field at the bottom. That would be the path to your TeraCopy location. You may have to place that path into quotation marks, if your path contains blank spaces, like "C:\Programs\Tera Copy\Teracopy.exe".

Click OK after you finished the button.

OR

let Leo himself show you, how a new button is created.

That is the problem, there is no "Customize" and Paste is grayed out. Maybe I need to upgrade. I will read some more. I also read @jonrDirectoryOpus similar suggestion. (Thank you Jon)

~r

These are the button codes to copy and paste.

<?xml version="1.0" encoding="UTF-8"?>
<usercommand backcol="none" textcol="none">
<label>TeraCopy_CopyFile</label>
<tip>Copy files with TeraCopy</tip>
<icon1>%ProgramFiles%\TeraCopy\TeraCopy.exe,1</icon1>
<function type="normal">
<instruction>%ProgramFiles%\TeraCopy\TeraCopy.exe Copy *{allfilepath|filem} {destpath}</instruction>
</function>
</usercommand>
<?xml version="1.0" encoding="UTF-8"?>
<usercommand backcol="none" textcol="none">
<label>TeraCopy_MoveFile</label>
<tip>Move files with TeraCopy</tip>
<icon1>%ProgramFiles%\TeraCopy\TeraCopy.exe,2</icon1>
<function type="normal">
<instruction>%ProgramFiles%\TeraCopy\TeraCopy.exe Move *{allfilepath|filem} {destpath}</instruction>
</function>
</usercommand>

Source: C:\Program Files\TeraCopy\Directory Opus.txt

Copy this code to the clipboard, go to the Directory Opus, and 
paste "Copy" button to the toolbar in the Customize mode. 

<?xml version="1.0" encoding="UTF-8"?>
<usercommand backcol="none" textcol="none">
<label>TeraCopy_CopyFile</label>
<tip>Copy files with TeraCopy</tip>
<icon1>%ProgramFiles%\TeraCopy\TeraCopy.exe,1</icon1>
<function type="normal">
<instruction>%ProgramFiles%\TeraCopy\TeraCopy.exe Copy *{allfilepath|filem} {destpath}</instruction>
</function>
</usercommand>

Repeat with this code to insert the "Move" button.

<?xml version="1.0" encoding="UTF-8"?>
<usercommand backcol="none" textcol="none">
<label>TeraCopy_MoveFile</label>
<tip>Move files with TeraCopy</tip>
<icon1>%ProgramFiles%\TeraCopy\TeraCopy.exe,2</icon1>
<function type="normal">
<instruction>%ProgramFiles%\TeraCopy\TeraCopy.exe Move *{allfilepath|filem} {destpath}</instruction>
</function>
</usercommand>

TeraCopy 3.17 is the latest stable not 3.25: TeraCopy 3.17 – Code Sector Blog

And ignore TeraCopy 4 Beta, moving is not working.