Jak rekurencyjnie wyświetlać katalogi w programie Powershell?Rekursywnie wyświetlaj katalogi w programie Power Shell
Próbowałem dir /S
ale bez powodzenia:
PS C:\Users\snowcrash> dir /S
dir : Cannot find path 'C:\S' because it does not exist.
At line:1 char:1
+ dir /S
+ ~~~~~~
+ CategoryInfo : ObjectNotFound: (C:\S:String) [Get-ChildItem], ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetChildItemCommand
dostać-ChildItem - rekursywny -katalog, wierzę, że może nie działać z ps2 – 4c74356b41
Krótkimi odpowiednikami 'dir/s' są' gci -r', 'ls -r',' dir -r' – wOxxOm
@wOxxOm tak, to jest to – Snowcrash