按升序对文件排序

时间:2013-03-07 07:56:18

标签: c# winforms list fileinfo

我有将pdf转换为tif图像文件的项目。输出文件在表单中编号。 file1,file2,file3 ....... file20。 当我执行下面的代码来获取文件时,它们被排列在列表中,如下所示,这是不正确的。任何想法如何解决这个问题?

FileInfo[] finfos = di.GetFiles("*.*");

finfos[0]=file1

finfos[1]=file10

finfos[2]=file11

finfos[3]=file12

....
...................

finfos[4]=file19

finfos[5]=file2

finfos[6]=file20

finfos[7]=file3

finfos[7]=file4

3 个答案:

答案 0 :(得分:1)

如果所有文件都被命名为mypic<number>.tif并且目录中没有具有不同名称格式的文件,请尝试使用:

        FileInfo[] orderedFI = finfos
            .OrderBy(fi => 
                // This will convert string representation of a number into actual integer
                int.Parse(
                    // this will extract the number from the filename
                    Regex.Match(Path.GetFileNameWithoutExtension(fi.Name), @"(\d+)").Groups[1].Value
                    ))
            .ToArray();

答案 1 :(得分:0)

如果按顺序创建它们,则按创建日期排序。

这是使用List

解决问题的方法
class Program
{
    private static int CompareWithNumbers(FileInfo x, FileInfo y)
    {
        if (x == null)
        {
            if (y == null)
            {
                // If x is null and y is null, they're 
                // equal.  
                return 0;
            }
            else
            {
                // If x is null and y is not null, y 
                // is greater.  
                return -1;
            }
        }
        else
        {
            // If x is not null... 
            // 
            if (y == null)
            // ...and y is null, x is greater.
            {
                return 1;
            }
            else
            {

                int retval = x.CreationTime<y.CreationTime?-1:1;
                return retval;          

            }
        }
    }
    static void Main(string[] args)
    {
        DirectoryInfo di = new DirectoryInfo("d:\\temp");
        List<FileInfo> finfos = new List<FileInfo>();
        finfos.AddRange(di.GetFiles("*"));
        finfos.Sort(CompareWithNumbers);

        //you can do what ever you want
    }
}

答案 2 :(得分:0)

前导零可能是您的解决方案。如果您控制生成文件的代码,则从您的描述中不清楚。 如果不是,您可以使用方法匹配file1,... file9(即正则表达式或文件名长度)并重命名它们。 如果您控制代码,则使用格式化程序将数字转换为带前导零的字符串(即2位数字{0:00})。

编辑:

使用以下草稿示例获取方向:

假设您在执行目录中有以下文件:file1.txt,file2.txt,file10.txt和file20.txt

foreach (string fn in System.IO.Directory.GetFiles(".", "file*.*"))
  if (System.Text.RegularExpressions.Regex.IsMatch(fn, @"file\d.txt"))
    System.IO.File.Move(fn, fn.Replace("file", "file0"));

上面的代码会将file1.txt重命名为file01.txt,将file2.txt重命名为file02.txt。