Certainly
Here's a snippet:
var newColl = 'coll://MyColl-' + DOpus.Create().Date().Format('D#yyyyMMdd-T#HHmmss');
cmd.RunCommand('CreateFolder NAME="' + newColl + '"');
cmd.ClearFiles();
// add the files, e.g.
cmd.AddFiles(someVector);
// or
cmd.AddFilesFromFile(someFile, 'utf8');
// or
cmd.SetFiles();
cmd.SetDest(newColl);
cmd.RunCommand('Copy COPYTOCOLL=member');
cmd.RunCommand('Go PATH="' + newColl + '"');
Here's a complete script using this technique:
https://resource.dopus.com/t/find-duplicates-in-subfolders/44909