How to setup a dialog containing destination folders

I want to be able to select files/folders, then press a key which pops up a dialog containing potential destinations to move files to.

Those destinations might include things such as

*user configured (favourite) common destinstions
*recent history
*ideally, a browsable and filterable (like the filter on settings) tree of all directories on the computer

Is something like this possible with DOPUS?

Maybe I'm talking about a (customised) Lister that appears after selecting files and pressing a key (e.g. m for move)

You can make a new button, containing all needed sub buttons with code like

@nodeselect
COPY {f} TO=C:\Path\Path2

etc., with the sub buttons having predefined favorites. You can also make a COPY MOVE variation.

[quote="nandonakis"]
*recent history[/quote]

This is possible as an menu item, with the code

Recent SHOWICONS

[quote="nandonakis"]
*ideally, a browsable and filterable (like the filter on settings) tree of all directories on the computer[/quote]

You can use the search function for this, although it won´t be displayed in a tree. For single drives you can use the flatview with no folders, & then filter all contents per wildcards. This is perhaps the closest by now. Also, the filter system can do a lot of things "on the fly", except scanning all drives simultaneously.

Copy MOVE TO=ask does pretty much exactly what you're asking for.

Thanks Leo, that was great, and I've made it into a button.
Cheers!