I'm trying to determine whether (and when) a file in my app's temp file directory has been modified, but the modification date (NSFileModificationDate
in the file attributes) seems to always match the creation date (NSFileCreationDate
). I have some vague recollection that the file system in iOS doesn't update modification dates, but I haven't found that documented anywhere.
Can anyone confirm (and maybe point to documentation) that iOS doesn't update modification dates?
Also, is there some other method for determining whether a file has changed short of hashing the contents and keeping track of the result myself?
I think this still works. Taken from Get directory contents in date modified order: