sort files named

Features wanted...
Post Reply
7iben
Posts: 123
Joined: 04 Apr 2019 18:22

sort files named

Post by 7iben »

Is it possible to sort files named
06-01-2026
11-02-2026
13-01-2026
in ascending or descending order in list view without 11-02-2026 always being in the middle? It seems to always sort by the first two numbers.
This is how it should be sorted if possible:
06-01-2026
13-01-2026
11-02-2026
(OS: Windows 11 Pro on Parallels ARM Virtual Machine - XY: Current x64 beta - Display: 3440x1440 @ 125%)

highend
Posts: 14922
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: sort files named

Post by highend »

Only by adding a CC column and using that for sorting...

Code: Select all

return regexreplace(<cc_name>, "^(\d{2})-(\d{2})-(\d{4})", "$3-$2-$1");
One of my scripts helped you out? Please donate via Paypal

7iben
Posts: 123
Joined: 04 Apr 2019 18:22

Re: sort files named

Post by 7iben »

Great, thank you very much for your help. :tup: :tup: :tup:
(OS: Windows 11 Pro on Parallels ARM Virtual Machine - XY: Current x64 beta - Display: 3440x1440 @ 125%)

Post Reply