Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Suncatcher

Pages: 1 [2]
26
Support and Feedback / Unpack to system folders
« on: February 26, 2016, 06:01:59 »
When I want to copy something to disk C or any other so called protected folder I notice that Multi Commander switch to Administrative Mode automatically, whereas in case of unpack it is not the case.
I get following message when I try to unpack smth to Program Files. Is it a bug or a default behavior? What should I do to normally unpack to such places?

27
Script / Recursive file search
« on: February 17, 2016, 14:46:50 »
I have need for script which would find all *dsl and *.lsd files in directory including subdirectories and select those folders which contain them. I wrote this script which, however, doesn't work.
Code: [Select]
@var $file = FindFiles("D:\downloads\Dicts_unpacked\\*");

@var $n;
for( $n = 0; $n < arrayCount($file); $n++)
{
  @var $is = IsFolder($file[n]);
  if($is == 1)
  {

    @var $infiles = FindFiles($file[n] ^ "*.lsd");
if(arrayCount($infiles) > 0)
       {
         @var $num = SetSourceSelected( $file[n] , 1);
        }

    @var $infiles = FindFiles($file[n] ^ "*.dsl");
if(arrayCount($infiles) > 0)
       {
         @var $num = SetSourceSelected( $file[n] , 1);
        }
  }
}


I get error on the 4th line: Script engine error - Line : 4, Error : -1 => Code : "$n = IsFolder($file[n])"
However, if I hard code this line, e.g IsFolder($file[0])) the IsFolder function works smoothly.
What am I doing wrong? Maybe, I misunderstand some fundamental concept?

P.S. Is there any function for recursive file search?

28
Support and Feedback / Dynamic size display in file explorer
« on: February 10, 2016, 12:50:39 »
Hi.
Is there any possiblity to achieve the same behaviour as dynamic (x.x k/M/G) in TC? When I set Mb or Gb option in Multi Commander, small files are shown as 0-sized.

29
Support and Feedback / Unpack to another panel
« on: November 28, 2015, 11:22:00 »
Hi!
How can I achieve the following behaviour: if I unpack some archive, it should be put into the location that is current in another panel (current tab). If I simply press "Unpack" it propose me the current archive location and nothing more (pic 1).
I found unpack option in Copy menu, however it lacks "Extract each archive to separate folder" option (pic 2).
Can I achieve the desired behaviour with either of above tools?

30
Support and Feedback / Backup doesn't work properly
« on: October 28, 2015, 04:45:06 »
I tried to transfer settings to another PC but couldn't done that. I did it via Export-Import functionality in Core settings and in Explorer settings. Nothing has changed on target PC. Am I doing right?
  • Export to file on source commander
  • Open this file on target commander, press "Import"
  • Press "Save" and then I told that program should be restarted
  • Restart

31
Support and Feedback / Assigned hotkey doesn't work after while
« on: October 21, 2015, 20:25:02 »
Keyboard hotkey (Switch hidden/system files) after some time stops working. When I reassign it, it works for a while but then all is repeated again.

32
Support and Feedback / Multi rename tool hotkey
« on: October 10, 2015, 17:41:06 »
Hi.
I didn't find multi rename tool in keyboard customization menu. Is it possible to assign hotkey to it?

33
Support and Feedback / Remove unnecessary buttons from button panel
« on: October 04, 2015, 20:49:24 »
Hi!
The question is in the title. I didn't find the way to remove them. Only editing via Button Editor.

Pages: 1 [2]