I would like known if Total Commander will have support to sort directories in a near future, physically to sort folders (at FAT Level), convert to uppercase, to lowercase.
Hello norfie, Directory Sorter v2.1 makes the work but unfornutalely do not works with Windows XP
Well, I think now that you will understand that I want to say..., by example to convert multiple folders to lowercase or uppercase using Windows's APIs.
LordGarfio wrote:Hello norfie, Directory Sorter v2.1 makes the work but unfornutalely do not works with Windows XP
Well, I think now that you will understand that I want to say..., by example to convert multiple folders to lowercase or uppercase using Windows's APIs.
Thanks dude.
As workaround you can move all folder to another location and then copy them sorted back. Of course it's not a solution if the Folder contains huge amount of files...
sheepdog
"A common mistake that people make when trying to design something
completely foolproof is to underestimate the ingenuity of complete fools."
Douglas Adams
Directory sorting cannot work on NTFS! Why? Because NTFS doesn't store dir listings as linear lists, but as a tree (a so-called B-tree). Therefore insertion of new files is always very fast, and the listing is automatically sorted by name.
ghisler(Author) wrote:Directory sorting cannot work on NTFS! Why? Because NTFS doesn't store dir listings as linear lists, but as a tree (a so-called B-tree). Therefore insertion of new files is always very fast, and the listing is automatically sorted by name.