diff options
author | Marvin Borner | 2019-04-15 00:10:50 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-15 00:10:50 +0200 |
commit | 8067db686d646be9ea09bbd25d87b6ceab073607 (patch) | |
tree | a56073c108d7491219736743dd0bf54f0af81a9a /src/main/kotlin/App.kt | |
parent | 4b8dc3a21087c57ef7eb36f199cd68b55132ca77 (diff) |
Added image previews
Diffstat (limited to 'src/main/kotlin/App.kt')
-rw-r--r-- | src/main/kotlin/App.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index 8b1de6d..fb93564 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -144,7 +144,8 @@ fun crawlFiles(ctx: Context) { arrayOf( if (File(filePath).isDirectory) "$fileName/" else fileName, humanReadableBytes(File(filePath).length()), - SimpleDateFormat("MM/dd/yyyy HH:mm:ss").format(File(filePath).lastModified()).toString() + SimpleDateFormat("MM/dd/yyyy HH:mm:ss").format(File(filePath).lastModified()).toString(), + if (File(filePath).isDirectory) "true" else isHumanReadable(filePath).toString() ) ) } |