How can I set the date change attribute in a Cocoa file? Thanks
What about the NSFileManager setAttributes:ofItemAtPath:error: method?
NSFileManager
setAttributes:ofItemAtPath:error:
http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSFileManager_Class/Reference/Reference.html
Attributes are a dictionary. You can set the date of change with the NSFileModificationDate key.
NSFileModificationDate
Basically:
NSDictionary* attr = [NSDictionary dictionaryWithObjectsAndKeys: yourDate, NSFileModificationDate, NULL]; [[NSFileManager defaultManager] setAttributes: attr ofItemAtPath: yourPath error: NULL];