在Cocoa中设置修改文件的日期

use*_*064 7 filesystems macos cocoa objective-c

如何在Cocoa中设置文件的日期修改属性?谢谢

Mac*_*ade 21

NSFileManager setAttributes:ofItemAtPath:error:方法怎么样?

http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSFileManager_Class/Reference/Reference.html

属性是字典.您可以使用NSFileModificationDate键设置修改日期值.

基本上:

NSDictionary* attr = [NSDictionary dictionaryWithObjectsAndKeys: yourDate, NSFileModificationDate, NULL];

[[NSFileManager defaultManager] setAttributes: attr ofItemAtPath: yourPath error: NULL];
Run Code Online (Sandbox Code Playgroud)