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.


Messages - Suncatcher

Pages: 1 2 3 [4] 5
76
Support and Feedback / MD5 calculation
« on: November 08, 2016, 18:19:34 »
Does Create MD5 checksums file in File Checksum menu use filename-dependent hash-function?
I tried it on technically similar files (which have different names) and it calculated different checksums for them.
I assume, MD5 should behave other way.

77
Support and Feedback / Re: Space determination bug
« on: March 31, 2016, 12:31:09 »
Ok, I knew about this duality but miscalculated the difference.
But binary prefix is de-facto standard in IT field. I assume it should be set in preferences by default.

78
Support and Feedback / Space determination bug
« on: March 31, 2016, 08:06:27 »
Hi there,
I revealed such strange bug concerning space determination on Windows 10.
The value that is showed in free device space area is wrong.

79
Support and Feedback / Re: Crash during multi rename attempt
« on: March 22, 2016, 20:21:31 »
Suncatcher

1. I have no error in v5.9
I also have 5.9 build 2062 64bit Edition.

or press [...] and add single block
Brilliant! That works like a charm. I didn't know about that functionality. Will be  using it.

80
Support and Feedback / Re: Crash during multi rename attempt
« on: March 22, 2016, 20:13:56 »
Crash IDs are 6-L122YM,  6-O122TH for two last ones, and for the first ones I haven't find the IDs anywhere. I attached all four dumps.
Suddenly, during the first attempt (from the last couple) it crashed not after "Add", but after "Start"

81
Support and Feedback / Re: Crash during multi rename attempt
« on: March 22, 2016, 09:55:36 »
Quote
What works in TC does not matter for MC. MC is not built on top of TC. and they work totally different.
I aware.
But I am also aware that MC shouldn't crash in any use case or during any actions no matter whether they related to TC or not.  Fool-proofing should exist anyway  :)
In the evening I'll post crash IDs, and now I can post exact steps I did.

  • I pasted search pattern into left textbox of Multi Rename tool
  • I pasted replace pattern into right texbox
  • I pressed Add button
  • MC crashed

Any other questions?

82
Support and Feedback / Crash during multi rename attempt
« on: March 22, 2016, 09:01:16 »
Hi there,
I want to report that Multi Commander crashed during multi rename operation. You can check two last today crash reports and grab all the details from them.
I use the following pattern for renaming (transliting):
Quote
|а|б|в|г|д|е|ж|з|и|й|к|л|м|н|о|п|р|с|т|у|ф|х|ц|ч|ш|щ|ы|ь|э|ю|я                         search pattern
Quote
_|a|b|v|g|d|e|zh|z|i|y|k|l|m|n|o|p|r|s|t|u|f|h|c|ch|sh|sch|y|j|e|yu|ya                    replace pattern
which works in TC like a charm without even ticking RegEx option.

What actions should I perform to reproduce its behavior in Multi Commander?
If you need more dumps or whatever, don't hesitate to ask me.


83
Support and Feedback / Re: Load file names from file
« on: March 09, 2016, 13:45:46 »
It is simply plain text file, where filenames are divided by linebreaks. I found this short but efficient workaround and it would be wonderful to build in this functionality in MC. However, if it's cumbersome, simple one-to-one (where number of files equals to number of lines, i.e. without loops) name generation would be just fine too.

84
Support and Feedback / Re: Load file names from file
« on: March 09, 2016, 13:37:42 »
No. Not sure what load filenames should do.
From TC help:

85
Support and Feedback / Load file names from file
« on: March 01, 2016, 05:24:19 »
Hi there,
Is there any opportunity to load file names from TXT file in Multi-rename like it is done in TC?

86
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?

87
Script / Re: Recursive file search
« on: February 18, 2016, 07:54:40 »
Nevertheless, thank you for your job! :) I just wanted to highlight ways of improvement, not to abuse.
The Commander itself is above all praise.

88
Script / Re: Recursive file search
« on: February 17, 2016, 21:44:28 »
Several other critical points that should be emphasized:

1. No complex conditions can be built in IF clause.
Code: [Select]
if(A == B OR (B == C AND D == E) ) {}Or I am mistaken? I didn't find anything in documentation.

2. The behavior of script interpreter with IF clause is undefined. One time it threw the exception with totally correct piece which is on the picture 1.
Another time it behaved itself totally unexpectedly with this piece of code.

Code: [Select]
if(arrayCount($inlsdfiles) == 0)
       {
        }
       else if(arrayCount($indslfiles) == 0)
       {
        }
       else
       {
         @var $arr[] = PathGetParts($file[$n]);
         @var $path[] = {};
         arrayAdd($path, $arr[2]);
         @var $num = SetSourceSelected($path, 1);

       }

During rendering this piece, having found false condition in main IF it skipped all other ELSE clauses and proceeded to the next loop iteration.

3. The collation of the real directories differs from the collation of array that FindFiles() function returns as result (see picture 2). And that's awkward.

4. The arrays cannot be initialized as empty ones. E.g.
Code: [Select]
@var $arr = {};Even if you write like this it inserts empty array member.

5. The arrays cannot be initialized with variables. E.g.
Code: [Select]
@var $arr = {$ini[$n], $ini[$n+1], $ini[$n+2], ...};Only with literals and it's poor.

So, the script language, as well as debugger, is still very raw for real work. IMHO.

89
Script / Re: Recursive file search
« on: February 17, 2016, 21:26:24 »
Thank you, it was a dumb mistake, and finally I was able to fulfill my task.
I don't know whether it will be useful for anybody (selection of folders based on filetypes they contain), but I will just put the script here.
Code: [Select]
@var $file = FindFiles("D:\some\path\\*");

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

    @var $inlsdfiles = FindFiles($file[$n] ^ "*.lsd");
    @var $indslfiles = FindFiles($file[$n] ^ "*.dsl");

if(arrayCount($inlsdfiles) > 0)
       {
         @var $arr[] = PathGetParts($file[$n]);
         @var $path[] = {};
         arrayAdd($path, $arr[2]);
         @var $num = SetSourceSelected($path, 0);

        }

       if(arrayCount($indslfiles) > 0)
       {
         @var $arr[] = PathGetParts($file[$n]);
         @var $path[] = {};
         arrayAdd($path, $arr[2]);
         @var $num = SetSourceSelected($path, 0);

       }
  }
}

Maybe, it could be done in a more beautiful way, but the clumsiness of this script language reads off the scale. I had a choice between Batch script, Bash script and Your script during evaluating this task, and I assume, I made the wrong choice  :)

90
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?

91
Support and Feedback / Re: Dynamic size display in file explorer
« on: February 13, 2016, 18:23:49 »
Thanks, that helped.

92
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.

93
Support and Feedback / Re: Unpack to another panel
« on: November 28, 2015, 18:30:04 »
Thanks, that works.

94
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?

95
Support and Feedback / Re: Assigned hotkey doesn't work after while
« on: November 05, 2015, 05:19:11 »
Yes, it seems to be some conflict. With another hotkey all is working smoothly.

96
Support and Feedback / Re: Backup doesn't work properly
« on: November 01, 2015, 06:01:26 »
That is just for import/export of indivudual settings on that page.

To move all settings for everything you need to to backup/restore under help menu

Yes, it helped. Thanks.

97
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

98
Support and Feedback / Re: Assigned hotkey doesn't work after while
« on: October 28, 2015, 04:39:41 »
Have you tried another key ? maybe there is some kind of conflict with that key.
Yes, I tried "Alt + [" recently and it also stopped working soon. After pressing such strange sound beeps like when window is locked in Windows.

99
Support and Feedback / Re: Assigned hotkey doesn't work after while
« on: October 25, 2015, 19:31:52 »
since you did not provide any more information,
What information do you need?

what command you use
Switch hidden/system files

how you assign it
As usual. Via the "Keyboard customization" in Configuration menu. I don't know any other ways.

and to what key
Usually I assign to "Ctrl + ]"

100
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.

Pages: 1 2 3 [4] 5