How to get the full path to current dir quickly

in windows xp or 7 you can click on the address bar textfield and quickly copy the full path of that directory into clipboard, how do you do this on Dopus?

Gaz.

With the items selected, run following button code:

Clipboard COPYNAMES

besides using it in a button, you can can bind it to a hotkey (you can do that in the buttons hotkey field), or run
it directly from the command line (pressing Shift > opens it).

If you only want to copy the path of the folder you are in, then it would be

Clipboard COPYNAMES=path

You can do it exactly the same way in Opus. What makes you think you can't? :slight_smile: Just click on the address bar (on the icon or the blank space on the right, so that you don't change to the parent directory you clicked on instead) and then push Ctrl-C, same as in Explorer.

Abr's buttons are useful if you want the paths to selected items.

If you want a button which copies the path to the current folder, use this command:

@nofilenamequoting Clipbord SET {sourcepath$|noterm}

But, as I say, you can just click the address bar and Ctrl-C like you're used to.