0

我有一个 .xls 文件列表,由文件夹中的时间戳命名。例如 2013_06_11_13_05_02Report、2013_06_11_13_08_02Report 等。我有大约 100 个文件,程序运行良好。

但是,我想在 openFileDialog 中突出显示最后创建的文件。我怎么做?

请帮助...

阿努巴夫

4

1 回答 1

0

基本上是这样的:

    string lastFile = Path.GetFileName(Directory.GetFiles(PATH_WITH_FILES, "*.xls").OrderBy(file => file).Last());
    this.openFileDialog1.FileName = lastFile;
    this.openFileDialog1.ShowDialog();
于 2013-06-11T12:41:40.150 回答