首页  编辑  

修改文件和目录的创建时间

Tags: /C#/文件目录操作/   Date Created:

using System . IO;

Directory . SetCreationTime( @"c:\temp" , new DateTime ( 2000 , 01 , 01 ));

File . SetCreationTime( @"c:\temp\temp.txt" , new DateTime ( 2000 , 01 , 01 ));