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 - Mathias (Author)

Pages: [1] 2 3 4 5 ... 183
1
My other issue is position-to within a file listing. In Windows Explorer and other file managers, you can click once in the file listing to set the focus, then start typing, and the focus changes to the first file that starts with that letter. And if you press Enter after pressing F or G or CH or whatever, the focused file gets launched. In MC, a little popup appears showing my typed text, but it doesn't change the focus.

Yes it change the focus and you can lunch with return from the search filed that pops up..
But you can also turn off the quick search field.
Explorer Panel settings , Under Keyboard handling.. turn off search field.. and turn off search keys.. Then focus will jump to best match while typing

2
Support and Feedback / Re: Can not move some files
« on: Today at 14:07:15 »
Yes. Nothing around that is changed.. No issue have been found.
Not been able to reproduce it.


3
When Windows Server is involved . nothing surprises me. The network security in Windows Server is complex and advanced.

4
Ok, I understand.

But still MC hangs when operation is in progress ("Calculating folder size, please wait...") and I want to close MC. Need to kill it. Is it possible to cancel task, when exiting MC?

EDIT:
I tried to upload dump (via https://multicommander.com/support/upload), but there is an error:
Bad Gateway
The proxy server received an invalid response from an upstream server.

The problem is that MC is waiting for the response from Everything. And currently there is no good way to abort that..
It will work better when Everything 1.5 comes. then get folder sizes will be even faster.


5
that is not a key for MultiUpdate. it is a key for WinHTTP  that is a service in windows for doing Http connection.. But MultiUpdate and MC is using that.

6
Make sure you allow the MultiUpdate.exe app go pass the firewall and not just Multicommander.exe

It works on the Windows server I have access to. But it is not super locked down.

However on server there are so many other policies then just firewall that can block app from reaching the network.
It is very complex. I don't know what can cause the issue for you.



7
Support and Feedback / Re: Everything support - wrong folder size
« on: February 10, 2025, 15:00:21 »
No MC can't cause Everything to crash like that..  Everything has an API that MC uses and ask. If everything has memory issues it is not becuse of MC.

But to get the correct folder size the option "Index folder size" must be enabled in the settings in Everything .


8
Support and Feedback / Re: No full-row select
« on: February 10, 2025, 12:30:46 »
To be able to turn it off, It been on the todo list for a while. Problem is that it will break a lot of other features/options. So it is not a quick fix. So because of that it been pushed a head.

9
Support and Feedback / Re: Everything support - wrong folder size
« on: February 10, 2025, 12:17:20 »
I can't reproduce that..
What version of "Everything" are you running. ?

That value look like a 64bit max value.. I guess Everything might have returned an error code that is not handled.

Everything can cause slowness specially in the root of C: MC will get the folder size from everything in the background , so it should not lock up everything. but everything can cause slowness.

Do you see folder size in "Everything"? . Might be that it must be turned on in settings in Everything.. not sure if that is on by default.

10
Script / Re: 7-zip profiles vs cmd line 7-zip?
« on: February 10, 2025, 12:16:00 »
Not sure why i hangs for you. it is strange..  all file operations are handled in background threads.

Can you give me a script that fails and a list how with how the the file structure should be for the script. Then I can test using the same file structure as you..  if it is something with the files or script

11
Script / Re: 7-zip profiles vs cmd line 7-zip?
« on: February 10, 2025, 08:41:32 »
Yes the idea was to scan subfolders; zip specifically named folders; delete those source zipped folders, leaving the 7z in their place & log operations.
(a & b were just placeholders for my test before giving it actual pathing)

I was thinking of adding a StrIsRegExpMatchNoCase or similar to delete redundant files recursively.  Basically a tidy up operation on a number of subfolders.
I got this, but the DeleteFiles instruction hangs the debugger & MC with a deletion dialog, tried with & without {}s on the last instruction.  Also tried SILENT to no effect  ???
Am I missing sth or is this a bug?

Code: [Select]
@var $currentPath = GetSourcePath();
@var $Items = GetSourceItems();
@var $count = arrayCount($Items);
@var $curItem;
@var $fullFilename;
@var $array2[];

// Loop all items in the $Items array
for( $n = 0; $n < $count; $n++)
{
  $curItem = $Items[$n];
  $fullFilename = $currentPath ^ $curItem;
  @var $isMatch = StrIsRegExpMatchNoCase($fullFilename, "[a-z0-9]{30}");

  if($isMatch)
  {
      arrayAdd($array2, $curItem);
  }
}

@var $options[] = {"NODIALOG"};
DeleteFiles($array2, $options);

Thanks in advance for looking at this



Hang the debugger ? hmm any error dialog that popup behind MC maybe ?

this work for me
Code: [Select]
@var $deleteOptions[] = {"NODIALOG"};

@var $files[] = {"R:\\Target\\File.zip", "R:\\Target\\File1.zip", "R:\\Target\\File2.zip"};

DeleteFiles($files, $deleteOptions);

12
Support and Feedback / Re: Invalid Path
« on: February 10, 2025, 07:19:17 »
Ahh During file operation. the look in the fileoperations log.  not app log. sorry


In core settings you can enable if the logging should be saved or not and what log level you want to show

13
No the status field in the file list is currently not customizable

14
Support and Feedback / Re: Invalid Path
« on: February 09, 2025, 20:17:40 »
When do you get this. What do you do to get this.

Is there any more information in the app log ?  Ctrl+L ?

15
Script / Re: 7-zip profiles vs cmd line 7-zip?
« on: February 09, 2025, 13:00:47 »
Not sure I understand what you ar doing.. packing each file in a folder and subfolders into its own 7z archive ?

16
Script / Re: 7-zip profiles vs cmd line 7-zip?
« on: February 07, 2025, 17:05:00 »
Currently MC is using the default value when compressing using 7Zip.. It is on the list to allow for modifying them. I just pushed that forward since building a UI for that is boring.

I will se If I get the time to put some time to it. It been high on the list for a while.

If you use the cmd line exe I think the compression level is -mx9 for maximum.
but there are other related setting to for it that affect compression

https://documentation.help/7-Zip/method.htm (make sure you scroll down to 7z.. )


17
Support and Feedback / Re: Can not move some files
« on: February 04, 2025, 10:36:09 »
Yes maybe..
Does it say anything more about the error in the FileOperatiopn Log ? (Ctrl+L, then click the fileoperation tab)

18
Beta Releases / Re: v14.6 BETA
« on: February 03, 2025, 07:52:30 »
You mean 3066 and not 3064 :)
ah yes 3066

19
Beta Releases / Re: v14.6 BETA
« on: January 31, 2025, 12:49:34 »
Thanks for the update Mathias. ;)

I noticed after the update today b3064, that the filesize output is missing from the bottom left of the panel.  (Where I have put a yellow box on the image)
Tried restart, no luck. Has a setting been lost or is it broken?
Thanks

This is the Selection Status Area in MC explorer panel settings, yes? Still cannot get it to show anything , Win11 Explorer does show these details OK in Status Bar.
I wondered if enable/disable freespace display would do anything but it didn't.
I guess a clean re-install is next...  :-\

I notice my self yesterday. I had temporary removed that, and forgot to put it back..
I new beta will be out tonight

20
Beta Releases / Re: v14.6 BETA
« on: January 30, 2025, 16:07:06 »
that is currently not customizable.
Been thinking to maybe add so it can be. problem is that some of the dark UI component are styled by Windows. So there is not full control of the colors in all places.
And if I enable so colors can be customizable people are going to complain why they can't change color at place X.

21
Paste works..But looks like it is 'Copy' that does not work.

Highlights break on space, So if you need to highlight part that have space in beginning and end. you need to put in with quotes
and Find trim space at beginning and end.
I understand the issue if you want to find a text with space at beginning. But I also know that sometimes when you copy/paste something with space at beginning / end you expect it to ignore it.
I will think about it. And see if I want to change behaviour

22
There is no option for that..  that scenario is not supported since it is very inefficient to do so..

23
No.. If MC should support search it would have to download the file first. so that would be very inefficient.

Some FTP server do support search on the server side with special "Site" commands. But they are not standard.
For example. som FTP server you can do "site find *.txt -contains "gmail.com"" and then you get the result in the FTP Log. But the exakt search command is different for all FTP Server and only few of them support it

24
Beta Releases / Re: v14.6 BETA
« on: January 25, 2025, 10:40:49 »
  ADDED - MC will set enovirment variables for the MC EXE and Path. So all programs MC start will see this enviroments variables.

Thanks for adding this!
However, what are then names of this environments?

I checked MultiCommander.exe process in Process Explorer and I see those:

COMMANDER_EXE
COMMANDER_PATH
(The same as Total Commander)

and

MULTICOMMANDER_EXE
MULTICOMMANDER_PATH

I will use those MULTICOMMANDER_*
Question. Why you also added variables with the same name as Total Commander does?

-Pawel
Yes Added the TC one for compbability reason for now. they might be removed.

25
Beta Releases / Re: v14.6 BETA
« on: January 24, 2025, 18:28:52 »
Let me know any issue you have with the SFTP/SCP extension.
Normal UserName/Password login should work

Pages: [1] 2 3 4 5 ... 183