Multi Commander Support Forum

Multi Commander => Feature Requests and Suggestions => Topic started by: buzzico on August 05, 2013, 10:14:05

Title: Load selection from file with paths
Post by: buzzico 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
Title: Re: Load selection from file with paths
Post by: Mathias (Author) 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.)