13

我需要在创建文件时获取 - 我尝试过使用:

FileInfo fi = new FileInfo(FilePath);
var creationTime = fi.CreationTimeUtc;

var creationTime = File.GetCreationTimeUtc(FilePath);

这两种方法通常都会返回错误的创建时间——我猜它被缓存在某个地方。

该文件被删除并以相同的名称重新创建,我需要知道它何时/是否已重新创建(通过检查创建的日期/时间是否已更改)-我计划通过查看文件来执行此操作创建时间已更改,但我发现这是不准确的。

我正在使用 Win 7,如果我检查文件资源管理器,它会正确显示新文件的创建时间。

我也尝试过使用 FileSystemWatcher,但它并不完全适用于我的用例。例如,如果我的程序没有运行,FileSystemWatcher 没有运行,所以当我的程序再次启动时,我不知道文件是否已被删除并重新创建。

我看过 MSDN http://msdn.microsoft.com/en-us/library/system.io.file.getcreationtime.aspx上面写着:

此方法可能返回不准确的值,因为它使用的本机函数的值可能不会被操作系统持续更新。

但是我也尝试过使用他们的替代建议并在创建新文件后设置 SetCreationDate 但我也发现这不起作用。请参阅下面的测试:

    [Test]
    public void FileDateTimeCreatedTest()
    {
        var binPath = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase);
        var fullFilePath = Path.Combine(binPath, "Resources", "FileCreatedDatetimeTest.txt");
        var fullFilePathUri = new Uri(fullFilePath);


        var dateFormatted = "2013-08-17T15:31:29.0000000Z"; // this is a UTC string
        DateTime expectedResult = DateTime.MinValue;
        if (DateTime.TryParseExact(dateFormatted, "o", CultureInfo.InvariantCulture,
            DateTimeStyles.AssumeUniversal, out expectedResult)) // we expect the saved datetime to be in UTC.
        {

        }

        File.Create(fullFilePathUri.LocalPath);
        Thread.Sleep(1000); // give the file creation a chance to release any lock

        File.SetCreationTimeUtc(fullFilePathUri.LocalPath, expectedResult); // physically check what time this puts on the file. It should get the local time 16:31:29 local
        Thread.Sleep(2000);
        var actualUtcTimeFromFile = File.GetCreationTimeUtc(fullFilePathUri.LocalPath);

        Assert.AreEqual(expectedResult.ToUniversalTime(), actualUtcTimeFromFile.ToUniversalTime());

        // clean up
        if (File.Exists(fullFilePathUri.LocalPath))
            File.Delete(fullFilePathUri.LocalPath);
    }

非常感谢任何帮助。

4

4 回答 4

10

您需要使用Refresh

FileSystemInfo.Refresh 从当前文件系统获取文件的快照。即使文件系统返回不正确或过时的信息,刷新也无法更正底层文件系统。这可能发生在 Windows 98 等平台上。

在尝试获取属性信息之前,必须调用 Refresh,否则信息将过时。

来自 MSDN 的关键位表明它需要快照属性信息..将过时

于 2013-08-20T15:58:00.323 回答
4

尝试使用它的FileInfo刷新方法

fileInfo.Refresh();
var created = fileInfo.CreationTime;

这应该工作

于 2013-08-20T15:57:54.463 回答
0
 File.Create(fullFilePathUri.LocalPath);
 Thread.Sleep(1000); // give the file creation a chance to release any lock

这不是你的做法。File.Create 创建应该关闭的流编写器以释放锁定而无需任何等待。如果你发现自己在使用 Thread.Sleep,你会经常发现自己做错了什么。

于 2014-08-13T11:24:10.263 回答
-1

如果 path 参数中描述的文件不存在,则此方法返回 1601 年 1 月 1 日午夜 12:00,协调世界时 (UTC),调整为本地时间。

https://docs.microsoft.com/en-us/dotnet/api/system.io.file.getcreationtime?view=netframework-4.8

于 2020-04-20T18:22:16.143 回答