有没有办法可以在文件资源管理器中修改文件夹的日期,或者这是Ntfs架构的一部分,无法更改。假设没有NTFS限制;如何使用c#
更改文件夹的创建时间答案 0 :(得分:0)
摘录中的MSDN摘录
string n = @"C:\test\dirToChange";
//Create two variables to use to set the time.
DateTime dtime1 = new DateTime(2002, 1, 3);
//Set the creation time to a variable DateTime value.
Directory.SetCreationTime(n, dtime1);