0

I have project that converts a pdf to tif image files. And the out put files are numbered in the form. file1, file2, file3.......file20. When I do the code below to get the files, they are arranged in the list as shown below which is not correct. Any ideas how to go around this?

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
4

3 回答 3

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();
于 2013-03-07T08:32:30.210 回答
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
    }
}
于 2013-03-07T08:00:14.793 回答
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。

于 2013-03-07T08:57:01.893 回答