Estou usando o Windows 10, no powershell
gostaria de ver a tree
estrutura da pasta com o nível de profundidade necessário. para isso eu uso o seguinte comando:
tree -F -L 1
Mas eu vim com o seguinte:
PS E:\Tutorials> tree -F -L 1
Too many parameters - -L
O que há de errado aqui? e qual é a maneira correta de ver a tree
estrutura windows
.
Desde já, obrigado.
windows-10
powershell
3gwebtrain
fonte
fonte
tree -F -L 1
?-F
,-L
e1
é suposto fazer.Respostas:
Como mostro uma árvore de diretórios no Powershell com uma profundidade especificada?
Você pode usar o
Show-Tree
cmdlet do Projeto de Extensão da Comunidade PowerShell .Para instalar
show-tree
:Para obter ajuda sobre
show-tree
:Exemplo de saída:
fonte
PS C:\xampp\htdocs\angular-hello-world> Install-Script -Name Show-Tree Install-Script : The term 'Install-Script' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + Install-Script -Name Show-Tree + ~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (Install-Script:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
Install-Module -Name Pscx
Pscx
como você disse. ainda mostra o mesmo erro. Isso é necessário para reiniciar meu sistema ou qualquer outra coisa?