Author Topic: Load selection from file with paths  (Read 6678 times)

buzzico

  • Newbie
  • *
  • Posts: 2
    • View Profile
Load selection from file with paths
« on: August 05, 2013, 10:14:05 »
Hi,

"Load selection from file" must be able to load a file list with full paths and not only with simple file names.
In this way It is possible to select file with same names from multiple directories.

Thanks,
Alessandro

Mathias (Author)

  • Administrator
  • VIP Member
  • *****
  • Posts: 4272
    • View Profile
    • Multi Commander
Re: Load selection from file with paths
« Reply #1 on: August 05, 2013, 11:50:48 »
Maybe..

But you can do that using script now..

Create a UserDefinedCommand of "Multi-Script" type

Code: [Select]
@var $currentPath = GetSourcePath();
$currentPath = $currentPath ^ "Selection.lst";

MC.Explorer.Selection.LoadSelectionFromFile FILE="{$currentPath}";

Assign command to button/hotkey/menu

(You can change "Selection.lst" to whatever you want the filename with selections to be.)