Anyone have a good resource or provide a sample of a natural order sort in C# for an FileInfo array? I am implementing the IComparer interface in my sorts.
|
8
|
|
|||
|
|
|
|
The easiest thing to do is just P/Invoke the built-in function in Windows, and use it as the comparison function in your
Michael Kaplan has some examples of how this function works here, and the changes that were made for Vista to make it work more intuitively. The plus side of this function is that it will have the same behaviour as the version of Windows it runs on, however this does mean that it differs between versions of Windows so you need to consider whether this is a problem for you. So a complete implementation would be something like:
|
||||
|
|
|
Adding to Greg Beech's answer (because I've just been searching for that), if you want to use this from Linq you can use the
|
||
|
|
|
|
You do need to be careful -- I vaguely recall reading that StrCmpLogicalW, or something like it, was not strictly transitive, and I have observed .NET's sort methods to sometimes get stuck in infinite loops if the comparison function breaks that rule. A transitive comparison will always report that a < c if a < b and b < c. There exists a function that does a natural sort order comparison that does not always meet that criterion, but I can't recall whether it is StrCmpLogicalW or something else. |
||
|
|
