Order by folders first, then filename ASC in ColumnView

Recently I have changed default sort ordering to the file name.
I’m using sort_by_column for that. But now another problem: the everything is sorted ASC, even directories. How can I set the order priority (like SQL ORDER BY col1 ASC, col2 DESC)?

You will need to use a CustomSorter. Within that you can sort however you want.

1 Like