如何对我的硬盘上显示的目录进行排序?

时间:2013-01-12 11:46:36

标签: c#

在我的硬盘上我有例如:

DIR1 DIR2 DIR3 dir4 .....

我的代码是:

DirectoryInfo dInfo = new DirectoryInfo(AutomaticsubDirectoryName);
DirectoryInfo[] subdirs = dInfo.GetDirectories();

所以在subdirs我得到了所有目录,但它们与我的硬盘上的顺序不一样。 我如何对它们进行排序,使它们按照它们在我硬盘上的顺序进入subdirs


由此解决:

DirectoryInfo[] subdirs = dInfo.GetDirectories().OrderBy(d =>
                    {
                        int i = 0;
                        if (d.Name.Contains("Lightning ") && d.Name.Contains(" Length") && d.Name.IndexOf("Lightning ") < d.Name.IndexOf(" Length"))
                        {
                            string z = d.Name.Substring(("Lightning ").Length);
                            string f = z.Substring(0, z.IndexOf(" Length"));
                            if (Int32.TryParse(f, out i))
                                return i;
                            else
                                return -1;
                        }
                        else
                            return -1;
                    }).ToArray();

工作完美。

4 个答案:

答案 0 :(得分:1)

假设您正在讨论文件系统以及Windows资源管理器之类的软件如何显示名称,我想您正在谈论对名称进行自然排序。请在此处阅读:http://www.codinghorror.com/blog/2007/12/sorting-for-humans-natural-sort-order.html

答案 1 :(得分:1)

Craetion time是它们出现在硬盘上的合理标准。

DirectoryInfo[] subdirs = dInfo.GetDirectories().OrderBy(d => d.CreationTime).ToArray();

答案 2 :(得分:1)

Windows使用的字符串比较功能为每个人公开使用。因此,您需要一点点的pinvoke来获得与Explorer使用的完全相同的排序顺序。将其包装在IComparer中&lt;&gt;所以你可以把它传递给Array.Sort()或OrderBy()Linq子句:

using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;

public class LogicalComparer : IComparer<string> {
    public int Compare(string x, string y) {
        return StrCmpLogicalW(x, y);
    }
    [DllImport("shlwapi.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
    private static extern int StrCmpLogicalW(string s1, string s2);
}

答案 3 :(得分:-2)

由此解决:

DirectoryInfo[] subdirs = dInfo.GetDirectories().OrderBy(d =>
                    {
                        int i = 0;
                        if (d.Name.Contains("Lightning ") && d.Name.Contains(" Length") && d.Name.IndexOf("Lightning ") < d.Name.IndexOf(" Length"))
                        {
                            string z = d.Name.Substring(("Lightning ").Length);
                            string f = z.Substring(0, z.IndexOf(" Length"));
                            if (Int32.TryParse(f, out i))
                                return i;
                            else
                                return -1;
                        }
                        else
                            return -1;
                    }).ToArray();

工作完美。