Multi Commander Support Forum

Multi Commander => Support and Feedback => Topic started by: erik on January 15, 2013, 16:10:12

Title: Getting file list
Post by: erik on January 15, 2013, 16:10:12
I finally got something to work get a file list in a file and read it in a batch file

Code: [Select]
@var $arr = GetSelectedPaths();
SaveArray("C:\Temp\work.txt", $arr, 1, 0);
MC.Run CMD="C:\Users\erik\Documents\readonly.cmd" ARG="C:\Temp\Work.txt"

the readonly.cmd file reads like this

Code: [Select]
Echo off
for /F "tokens=1* delims=, usebackq" %%x in (%1) do attrib +r "%%x"
Del "%1"


Yes Finally fixed it

Code: [Select]
@var $arr = GetSelectedPaths();
if (arrayCount($arr) > 0
   {
   @var $n = 0;
   for( $n = 0; $n < arrayCount($arr); $n = $n + 1 )
      {
      @var $msg = $arr[$n];
      MC.Run CMD="attrib.exe" ARG="+r {$msg}"
      }
   }
Title: Re: Getting file list
Post by: Mathias (Author) on January 15, 2013, 17:19:08
I guess a script command for changing the file attribute would make it even easier. Then no external command would be needed to be executed.
I will see if I can add that.