Junior Member
|
引用:
作者冬之炎陽
程式排序速度不是什麼問題,幾萬個也是一秒內的事
速度慢的原因多是從檔案系統取檔案清單時很慢
或是你說的可能是硬碟有壞磁區,那也會很慢
這程式難處理的應該是主畫面
那應該都是靠 "畫" 出來的
顯示的內容和右邊的scrollbar 應該是分離的
|
file explorer 有用 natural sort order 速度比較慢。
可以參考下面這一篇改掉。
https://superuser.com/questions/984...indows-explorer
Total Commander 的檔案排序有四種演算法。
引用:
Sort method: Determines how the file lists are sorted in Total Commander:
Alphabetical, considering accents
Files are sorted by alphabet, using the compare function provided by the operating system for the current language. This takes language-specific accents into account.
Strictly by numeric character code
Files are sorted by the numeric uppercase character code. Since accents come behind the normal alphabet, accented letters will be sorted at the end.
Natural sorting: by character code and numbers
This sorting method sorts by numeric lowercase character code, plus by numbers if any are found. For example, file5.txt is sorted before file10.txt, although 1 comes before 5 - because 10 is larger than 5.
Natural sorting: alphabetical and numbers
Like the above, but also considers accents and other national sorting options. Needs Internet Explorer >=6.x installed on your system, because a function from IE6 is used for sorting.
|
|