• Resolved Sany

    (@sannny)


    Hello,

    great plugin. Is it possible to sort the file names case sensitive?
    In SQL, I think it is ASC COLLATE NOCASE

    For example, I get a list like that:
    All.png
    Ball.png
    apple.png
    banana.png

    But I want to have my list like that:
    All.png
    apple.png
    Ball.png
    banana.png

    Thanks for any help you can offer.
    saNNNy

    https://www.ads-software.com/plugins/mmm-file-list/

Viewing 1 replies (of 1 total)
  • Thread Starter Sany

    (@sannny)

    Got it. I added natcasesort() after scandir() in function ListFiles(). Works fine. natcasesort() sorts the files case insensitive.

    $files = scandir($dir);
    natcasesort($files);

    saNNNy

Viewing 1 replies (of 1 total)
  • The topic ‘Case insensitive sorting’ is closed to new replies.