1
Beta Releases / Re: v16.0 Beta
« Last post by Matthias515566 on Today at 12:49:18 »I removed MS Edge WebView and I will not reinstall it. I will also remove it after changing to Win 11.
MultiCommander v15.8 is released!
Well it will give you a challenge this summer. Go for it while you are at the beach!
Thank you. I am using this command in the button editor to make the directory folder and it works.
MC.Explorer.Makedir FOLDERNAME=:[d][t]
But now I want a space in between the [d] and [t]. I tried this:
MC.Explorer.Makedir FOLDERNAME=:[d] [t]
MC cannot interpret this space and truncates the [t] if there is a space in between them. It only creates the YYY-MM-DD as the folder name. Is there a way to create a folder with a space in between YYYY-MM-DD and HH-MM-SS ?
@Mathias (Author)
Log says:
2026-07-02 11:38:02.277 Script engine info => Variable "$i" created
2026-07-02 11:38:02.277 Script engine error => Variable "$text + '"' + $arr" not found
2026-07-02 11:38:02.277 Script engine error => Failed to process token - "$text"
2026-07-02 11:38:02.277 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
2026-07-02 11:38:02.277 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
2026-07-02 11:38:02.277 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
@var $text = "";
@var $arr = GetSelectedPaths();
@var $cnt = arrayCount($arr)
for($i = 0; $i < $cnt; $i++)
{
if($i == 0)
{
$text = $text + '"' + $arr[$i] + '"';
}
else
{
$text = $text + " " + '"' + $arr[$i] + '"';
}
}
@var $name = $arr[$i];
if($i == 0)
{
$text = $text + '"' + $name + '"';
}
else
{
$text = $text + " " + '"' + $name + '"';
}