我试图对文件列表进行排序,但没有成功。
它递归地获取文件,但没有任何顺序。
这是代码:
private void Step2_Load(object sender, EventArgs e)
{
foreach (string file in GetFiles(PathClient))
{
string flist = "";
if (file.Contains(PathClient + "\\"))
flist = file.Replace(PathClient + "\\", "");
else
flist = file.Replace(PathClient, "");
LB_FULL.Items.Add(flist);
}
.
.
.
static IEnumerable<string> GetFiles(string path)
{
Queue<string> queue = new Queue<string>();
queue.Enqueue(path);
while (queue.Count > 0)
{
path = queue.Dequeue();
try
{
foreach (string subDir in Directory.GetDirectories(path))
queue.Enqueue(subDir);
}
catch (Exception ex)
{
//ex
}
string[] files = null;
try
{
files = Directory.GetFiles(path);
}
catch (Exception ex)
{
//ex
}
if (files != null)
{
for (int i = 0; i < files.Length; i++)
{
yield return files[i];
}
}
}
}
我试过使用 OrderBy,但它只按文件名排序,而不考虑子文件夹。
我想先按子文件夹排序,然后按文件名。
例如。
/
/file_a.bla
/file_b.bla
/file_c.bla
/sub1/file_a.bla
/sub1/file_b.bla
/sub2/_file_x.bla
/testsub/a.bla
...
等等。
任何想法如何管理它?