解决方法
使用:
System.IO.File.GetCreationTime(filename);
要获取文件的创建时间,请参阅GetCreationTime了解更多详细信息和示例.
那么你可以做一些像:
public bool IsBelowThreshold(string filename,int hours) { var threshold = DateTime.Now.AddHours(-hours); return System.IO.File.GetCreationTime(filename).AddHours(-hours) <= threshold; }