We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f5f5a07 + f436ab0 commit 25ef415Copy full SHA for 25ef415
1 file changed
core/Command/Info/File.php
@@ -79,6 +79,7 @@ public function execute(InputInterface $input, OutputInterface $output): int {
79
80
$output->writeln(' size: ' . Util::humanFileSize($node->getSize()));
81
$output->writeln(' etag: ' . $node->getEtag());
82
+ $output->writeln(' permissions: ' . $this->fileUtils->formatPermissions($node->getType(), $node->getPermissions()));
83
if ($node instanceof Folder) {
84
$children = $node->getDirectoryListing();
85
$childSize = array_sum(array_map(function (Node $node) {
0 commit comments