Copy files to multiple folders

Can you tell me if I can make a copy of a file within the dOpus and place it in several folders at the same time?

Might be what you need:

Make a User Command like so

here is the code to copy and paste

function OnClick(clickData)
{
	var cmd = clickData.func.command;
	for (var eSel = new Enumerator(clickData.func.sourcetab.selected_dirs); !eSel.atEnd(); eSel.moveNext())
	{
		cmd.ClearFiles();
		cmd.AddFile(eSel.item());
		cmd.RunCommand("Clipboard PASTE USESEL");
	}
}

then make a button up with the command
PastePlus

select multiple folders and click button to copy to them