aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/FileController.kt
diff options
context:
space:
mode:
authorMarvin Borner2019-04-18 00:16:42 +0200
committerMarvin Borner2019-04-18 00:16:42 +0200
commit663ca2f73d88072f35dc33a6b85a3742a8f62e64 (patch)
treea463667902898a7d24bc109740af726a83319485 /src/main/kotlin/FileController.kt
parentf71843df94f1d89dbec7283854dddb76e35598dc (diff)
Added icons defining the type of the file
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'src/main/kotlin/FileController.kt')
-rw-r--r--src/main/kotlin/FileController.kt1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/kotlin/FileController.kt b/src/main/kotlin/FileController.kt
index cb2b0f7..e8526cf 100644
--- a/src/main/kotlin/FileController.kt
+++ b/src/main/kotlin/FileController.kt
@@ -33,6 +33,7 @@ class FileController {
humanReadableBytes(fileSize),
SimpleDateFormat("MM/dd/yyyy HH:mm:ss").format(file.lastModified()).toString(),
if (file.isDirectory) "true" else isHumanReadable(file).toString(),
+ file.isDirectory.toString(),
fileSize.toString(), // unformatted file size
file.lastModified().toString() // unformatted last modified date
)