如何获取某个目录下应用实例期间新创建的文件列表?

Posted

技术标签:

【中文标题】如何获取某个目录下应用实例期间新创建的文件列表?【英文标题】:How to get the list of newly created files during an application instance in a certain directory? 【发布时间】:2018-10-19 10:40:40 【问题描述】:

我想知道当我的应用程序打开时,如何在某个目录中的某个应用程序实例中获取新创建的文件列表。

要明确一点:每次打开我的应用程序时,都会在某个目录中生成很少的文件,我只想要打开应用程序后创建的那些文件的列表。

【问题讨论】:

应用打开时存储应用打开时间,查看该时间后创建的文件 您需要在特定的 c 时间后修改文件。 DateTime 日期 = DateTime.Now.AddHours(-1); DirectoryInfo dirInfo = new DirectoryInfo(@"c:\temp"); List filesInfo = dirInfo.GetFiles().Where(x => x.LastWriteTime >= date).ToList(); 【参考方案1】:

使用 FileWatcher

    FileSystemWatcher watcher = new FileSystemWatcher();
    watcher.Path = @"C:\temp";
    watcher.NotifyFilter =  NotifyFilters.FileName;
    watcher.Filter = "*.*";
    watcher.Created += new FileSystemEventHandler(OnCreated);
    watcher.EnableRaisingEvents = true;

    private static void OnCreated(object sender, FileSystemEventArgs e)
    
        Console.WriteLine($"File created e.Name");
    

【讨论】:

以上是关于如何获取某个目录下应用实例期间新创建的文件列表?的主要内容,如果未能解决你的问题,请参考以下文章

在java项目中如何获取某个文件的路径

ZooKeeper之应用实例

如何在jQuery中获取可见列表的eq?

Zlib和Minizip - 如何将新目录添加到.zip文件

如何设置电脑某个文件夹目录下面所有子目录及文件按列表格式显示?

如何在python列表中查找某个元素的索引