Recent Posts

Pages: 1 ... 5 6 7 8 [9] 10
81
Beta Releases / Re: 15.6 BETA
« Last post by Mathias (Author) on July 29, 2025, 15:14:47 »
Thanks for the additional features Mathias.  8)

I think that the last update may have broken something in the MS execution. MC 15.6 b3110 x64 on Win11 24H2 b26100.4652
I get a ‘Cannot delete’ msg when attempting to delete or move files using my previously working scripts.
Stepping through in the debugger everything seems 100% until the delete command is reached, I tried with & without options & it always fails.
E.g.
Code: [Select]
@var $currentPath = GetSourcePath();
@var $Items = GetSourceItems(1);
@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[] = {"RECYCLE", "NODIALOG"};
DeleteFiles($array2, $options);
Breaks at last line with error msg (attached screenshot).

Any ideas?  Thanks!

Can you give me example on how filenames should be for the script to try to delete them ? so I can do some testing
82
Beta Releases / Re: 15.6 BETA
« Last post by Ulfhednar on July 29, 2025, 12:43:03 »
Thanks for the additional features Mathias.  8)

I think that the last update may have broken something in the MS execution. MC 15.6 b3110 x64 on Win11 24H2 b26100.4652
I get a ‘Cannot delete’ msg when attempting to delete or move files using my previously working scripts.
Stepping through in the debugger everything seems 100% until the delete command is reached, I tried with & without options & it always fails.
E.g.
Code: [Select]
@var $currentPath = GetSourcePath();
@var $Items = GetSourceItems(1);
@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[] = {"RECYCLE", "NODIALOG"};
DeleteFiles($array2, $options);
Breaks at last line with error msg (attached screenshot).

Any ideas?  Thanks!
83
I just wanted to update this because the latest Windows Update has fixed the problem. Last night I updated Windows to 26100.4770, and my Explorer window again shows my copy/move progress under MultiCommander. So the problem was something in Windows.
84
Beta Releases / Re: 15.6 BETA
« Last post by Mathias (Author) on July 23, 2025, 11:50:58 »
Image of VFG configuration
85
Alternatively, I'm curious if MC can save colors to files or folders in order to make it easier for me to recall what they hold.

Yes, but it may be tricky since there're a lot pf options. You should enable File coloring: either via color spectrum icon on the toolbar or via menu > Explorer Panel Settings > File and Folder state colors > Rule based coloring for files and folders. There're also a bunch of options for background etc, be careful.

In the File coloring rules editor you can create you own profile and set up colors for everything.

If you want to set up coloring for some specific folder, you'll need to configure like on the picture
86
Hello I'm new in the forum. I've been trying to file a file manager that allows me to place files where I want them, basically 'geographically' in a folder, so I can list them but then have them revert to the "layout" of where they were. So far, I haven't read that MC can do this.

Alternatively, I'm curious if MC can save colors to files or folders in order to make it easier for me to recall what they hold.


Thank you,

Mac
87
Support and Feedback / Re: How to change language in menu bar
« Last post by skyeliner on July 20, 2025, 22:45:56 »
Got it! Thank you or the quick response!
88
Support and Feedback / Re: How to change language in menu bar
« Last post by Mathias (Author) on July 20, 2025, 22:28:30 »
Menu > Configuration > Core Settings
First option there is language
89
Support and Feedback / How to change language in menu bar
« Last post by skyeliner on July 20, 2025, 13:37:03 »
Right after installing MC SE v15.5 Build 3103 the menu bar showed German titles in the menu bar (Datei, Einstellungen etc). After restart it now shows all in English (file, edit, configuration etc). I did not find a way to change back to the German language. Can somebody please help and advise what I need to do?
Regards
skyeliner
90
Support and Feedback / Re: How do I save session with updated stuff?
« Last post by Mathias (Author) on July 18, 2025, 10:56:41 »
it is grey if a session is not load loaded
Pages: 1 ... 5 6 7 8 [9] 10