diff --git a/core/Command/Info/File.php b/core/Command/Info/File.php index 2a557b6768e..a081d1d13e1 100644 --- a/core/Command/Info/File.php +++ b/core/Command/Info/File.php @@ -79,6 +79,7 @@ class File extends Command { $output->writeln(' size: ' . Util::humanFileSize($node->getSize())); $output->writeln(' etag: ' . $node->getEtag()); + $output->writeln(' permissions: ' . $this->fileUtils->formatPermissions($node->getType(), $node->getPermissions())); if ($node instanceof Folder) { $children = $node->getDirectoryListing(); $childSize = array_sum(array_map(function (Node $node) {