使用 File.SetCreationTime 和 File.SetLastWriteTime 使 Windows 资源管理器隐藏文件的这些详细信息

Using File.SetCreationTime and File.SetLastWriteTime makes Windows Explorer hide these details for the file

我在尝试为文件设置 CreationTime 和 LastWriteTime 时遇到了一些奇怪的事情。

DateTime nDT = new DateTime(1974, 12, 23,10,31,34);
string path = @"C:\Users\matte\Desktop\Desktop_Test.zip";
File.SetCreationTime(path, nDT);
File.SetLastWriteTime(path, nDT);

我在控制台应用程序中使用此代码,当它运行时,它会更新这些属性,但相关值会从 Windows Explorer 中消失。

我是不是搞错了?

我想如果date在1980, 1, 1之前你就看不到了。文章太多了但是我觉得有道理的是https://superuser.com/questions/796762/what-is-the-range-of-dates-that-windows-explorer-can-display.