如何在Cocoa中设置文件的日期修改属性?感谢
答案 0 :(得分:21)
NSFileManager
setAttributes:ofItemAtPath:error:
方法呢?
属性是字典。您可以使用NSFileModificationDate
键设置修改日期值。
基本上:
NSDictionary* attr = [NSDictionary dictionaryWithObjectsAndKeys: yourDate, NSFileModificationDate, NULL];
[[NSFileManager defaultManager] setAttributes: attr ofItemAtPath: yourPath error: NULL];