1

What does "lastmodified" describe? Just the file's content or also file system related things like file name and Path?

My interest goes especially for the Android platform. I will store data in my app's directory. A quick test showed, that a Samsung Android device with Android 4.2.2 does not change the date when moving files with the build in file browser.

Andres Cárdenas
  • 720
  • 1
  • 5
  • 26
OneWorld
  • 17,512
  • 21
  • 86
  • 136

1 Answers1

1

from my experience it doesnt change it. After such operations I manually do

file.setLastModified(System.currentTimeMillis());
tibbi
  • 249
  • 4
  • 27