Não é possível ver a estrutura 'tree' com profundidade requerida

0

Estou usando o windows 10, no powershell gostaria de ver a pasta tree estrutura com o nível de profundidade necessário. para isso eu uso o seguinte comando:

 tree -F -L 1

Mas eu fiz o seguinte:

PS E:\Tutorials> tree -F -L 1
Too many parameters - -L

O que está errado aqui? e qual é a maneira correta de ver a estrutura tree em windows .

Obrigado antecipadamente.

    
por 3gwebtrain 15.06.2017 / 09:43

1 resposta

3

Como mostro uma árvore de diretórios no Powershell com uma profundidade específica?

Você pode usar o cmdlet Show-Tree do projeto de extensão de comunidade do PowerShell .

Para instalar o show-tree :

> Install-Script -Name Show-Tree

Untrusted repository
You are installing the scripts from an untrusted repository. If you trust this repository, change its InstallationPolicy value by running the Set-PSRepository cmdlet. Are you sure you want to install
 the scripts from 'PSGallery'?
[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "N"): a     

Para obter ajuda sobre show-tree :

> get-help show-tree

NAME
    Show-Tree

SYNOPSIS
    Shows the specified path as a tree.


SYNTAX
    Show-Tree [[-Path] <String[]>] [[-Depth] <Int32>] [-Force] [-IndentSize <Int32>] [-ShowLeaf] [-ShowProperty] [-ExcludeProperty <String[]>] [-Width <Int32>] [-UseAsciiLineArt] [<CommonParameters>]

    Show-Tree [[-LiteralPath] <String[]>] [[-Depth] <Int32>] [-Force] [-IndentSize <Int32>] [-ShowLeaf] [-ShowProperty] [-ExcludeProperty <String[]>] [-Width <Int32>] [-UseAsciiLineArt]
    [<CommonParameters>]


DESCRIPTION
    Shows the specified path as a tree.  This works for any type of PowerShell provider and can be used to explore providers used for configuration like the WSMan provider.


RELATED LINKS

REMARKS
    To see the examples, type: "get-help Show-Tree -examples".
    For more information, type: "get-help Show-Tree -detailed".
    For technical information, type: "get-help Show-Tree -full".

Exemplo de saída:

> Show-Tree f:\test –depth 2
F:\test
├──subdir
│  └──child
├──test
├──test with space
│  └──child
└──test.with.dot
   └──child
>
    
por 15.06.2017 / 12:29