aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin')
-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
)