diff options
author | Marvin Borner | 2019-04-18 00:16:42 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-18 00:16:42 +0200 |
commit | 663ca2f73d88072f35dc33a6b85a3742a8f62e64 (patch) | |
tree | a463667902898a7d24bc109740af726a83319485 /src/main/kotlin/FileController.kt | |
parent | f71843df94f1d89dbec7283854dddb76e35598dc (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.kt | 1 |
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 ) |