1
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.
Not been able to reproduce it.
MultiCommander v14.2 is released!
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.
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.
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
@var $deleteOptions[] = {"NODIALOG"};
@var $files[] = {"R:\\Target\\File.zip", "R:\\Target\\File1.zip", "R:\\Target\\File2.zip"};
DeleteFiles($files, $deleteOptions);
You mean 3066 and not 3064ah yes 3066
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...
Yes Added the TC one for compbability reason for now. they might be removed.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