Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android set last modified time for the file

Tags:

file

android

time

I have been using " public boolean setLastModified (long time) " for setting the file modified time but it always return false. I have seen few similar posts related to this but none of them could work for me. can someone give me solution for this?

Please do not post me any URL's, I have already seen them :

file.lastModified() is never what was set with file.setLastModified()

Is it possible to reset the last modified date of an Android file?

http://www.mkyong.com/java/how-to-change-the-file-last-modified-date-in-java/

like image 893
user1810931 Avatar asked Sep 07 '13 20:09

user1810931


1 Answers

setLastModified() is apparently unreliable on Android, perhaps working on some devices and not on others.

like image 154
CommonsWare Avatar answered Oct 11 '22 04:10

CommonsWare