reading time stamp from files in Cocoa?
I want to read when a file is created (or last modified) as it showed in Finder "Date Modified."
Is there any exis开发者_如何转开发ting method in Cocoa can do so? Thanks!
If you're using 10.5 or later, you can use -[NSFileManager attributesOfItemAtPath:error:]
.
see 'man stat'
or google 'struct stat'
精彩评论