Update the Android `fileLastModified` method to return values in seconds instead of milliseconds
This commit is contained in:
parent
ee363af0ed
commit
cde873b406
|
@ -53,7 +53,7 @@ internal class FileData(filePath: String, accessFlag: FileAccessFlags) : DataAcc
|
||||||
|
|
||||||
fun fileLastModified(filepath: String): Long {
|
fun fileLastModified(filepath: String): Long {
|
||||||
return try {
|
return try {
|
||||||
File(filepath).lastModified()
|
File(filepath).lastModified() / 1000L
|
||||||
} catch (e: SecurityException) {
|
} catch (e: SecurityException) {
|
||||||
0L
|
0L
|
||||||
}
|
}
|
||||||
|
|
|
@ -203,7 +203,7 @@ internal class MediaStoreData(context: Context, filePath: String, accessFlag: Fi
|
||||||
}
|
}
|
||||||
|
|
||||||
val dataItem = result[0]
|
val dataItem = result[0]
|
||||||
return dataItem.dateModified.toLong()
|
return dataItem.dateModified.toLong() / 1000L
|
||||||
}
|
}
|
||||||
|
|
||||||
fun rename(context: Context, from: String, to: String): Boolean {
|
fun rename(context: Context, from: String, to: String): Boolean {
|
||||||
|
|
Loading…
Reference in New Issue