1
Support and Feedback / Column sizing in List view
« on: Yesterday at 12:15:59 »
If you right click on column header and select "save current layout as default" it will try to always use that size.
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.
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.
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);