9

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/

Community
  • 1
  • 1
user1810931
  • 638
  • 2
  • 11
  • 33

2 Answers2

18

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

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491
0

You are told to test the return value, false if it is fail. Disappointed to find out about that...