답변:
PowerShell 버전이 3.0 미만인 경우 :
에 FileInfo
의해 반환 된 객체 Get-ChildItem
에는 "base"속성이 PSIsContainer
있습니다. 해당 항목 만 선택하려고합니다.
Get-ChildItem -Recurse | ?{ $_.PSIsContainer }
디렉토리의 원시 문자열 이름을 원하면 할 수 있습니다
Get-ChildItem -Recurse | ?{ $_.PSIsContainer } | Select-Object FullName
PowerShell 3.0 이상 :
dir -Directory
PowerShell 3.0에서는 더 간단합니다.
Get-ChildItem -Directory #List only directories
Get-ChildItem -File #List only files
dir
별명이되었다 Get-ChildItem
, 그리고 -Directory
및 -File
옵션은 설명했다. 나는 명령을 사용 echo $PSVersionTable
, help dir
, dir -Directory
및 dir -File
이 댓글을 마련 할 수 있습니다.
ls
과 dir
의 별칭 Get-ChildItem
당신의 독 선택
사용하다
Get-ChildItem -dir #lists only directories
Get-ChildItem -file #lists only files
별칭을 선호하는 경우
ls -dir #lists only directories
ls -file #lists only files
또는
dir -dir #lists only directories
dir -file #lists only files
서브 디렉토리도 재귀하려면 -r
옵션을 추가하십시오 .
ls -dir -r #lists only directories recursively
ls -file -r #lists only files recursively
PowerShell 4.0, PowerShell 5.0 (Windows 10), PowerShell Core 6.0 (Windows 10, Mac 및 Linux) 및 PowerShell 7.0 (Windows 10, Mac 및 Linux)에서 테스트되었습니다 .
참고 : PowerShell Core에서는 -r
스위치 를 지정할 때 심볼릭 링크가 따르지 않습니다 . 심볼릭 링크를 따르려면로 -FollowSymlink
스위치를 지정하십시오 -r
.
참고 2 : PowerShell은 이제 버전 6.0부터 크로스 플랫폼입니다. 크로스 플랫폼 버전은 원래 PowerShell Core라고했지만 PowerShell 7.0 이상부터 "Core"라는 단어가 삭제되었습니다.
Get-ChildItem 설명서 : https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-childitem
보다 깔끔한 접근법 :
Get-ChildItem "<name_of_directory>" | where {$_.Attributes -match'Directory'}
PowerShell 3.0에 디렉터리 만 반환하는 스위치가 있는지 궁금합니다. 논리적으로 추가하는 것 같습니다.
-Directory
및 -File
플래그 추가
PowerShell v2 이상에서 (k는 검색을 시작하는 폴더를 나타냅니다) :
Get-ChildItem $Path -attributes D -Recurse
폴더 이름 만 원하고 다른 것을 원하지 않으면 다음을 사용하십시오.
Get-ChildItem $Path -Name -attributes D -Recurse
특정 폴더를 찾고 있다면 다음을 사용할 수 있습니다. 이 경우에는 다음과 같은 폴더를 찾고 있습니다 myFolder
.
Get-ChildItem $Path -attributes D -Recurse -include "myFolder"
이 방법에는 더 적은 텍스트가 필요합니다.
ls -r | ? {$_.mode -match "d"}
사용하다:
Get-ChildItem \\myserver\myshare\myshare\ -Directory | Select-Object -Property name | convertto-csv -NoTypeInformation | Out-File c:\temp\mydirectorylist.csv
다음은 무엇입니까
Get-ChildItem \\myserver\myshare\myshare\ -Directory
Select-Object -Property name
convertto-csv -NoTypeInformation
Out-File c:\temp\mydirectorylist.csv
당신이 사용하고자하는 것 은 Get-ChildItem을을 반복적으로 먼저 모든 폴더와 파일을 얻을 수 있습니다. 그런 다음 해당 출력을 파일 만 가져 오는 Where-Object 절로 파이프 하십시오.
# one of several ways to identify a file is using GetType() which
# will return "FileInfo" or "DirectoryInfo"
$files = Get-ChildItem E:\ -Recurse | Where-Object {$_.GetType().Name -eq "FileInfo"} ;
foreach ($file in $files) {
echo $file.FullName ;
}
수락 된 답변에 언급
Get-ChildItem -Recurse | ?{ $_.PSIsContainer } | Select-Object FullName
"원시 문자열"을 얻을 수 있습니다. 그러나 실제로 유형의 객체 Selected.System.IO.DirectoryInfo
가 반환됩니다. 원시 문자열의 경우 다음을 사용할 수 있습니다.
Get-ChildItem -Recurse | ?{ $_.PSIsContainer } | % { $_.FullName }
값이 문자열에 연결되어 있으면 차이점이 중요합니다.
Select-Object
놀랍게도foo\@{FullName=bar}
ForEach
-operator 와 함께 다음 과 같이 예상됩니다.foo\bar
Select-Object -ExpandProperty FullName
내 솔루션은 TechNet 기사 Get-ChildItem Cmdlet으로 할 수있는 재미있는 일을 기반으로합니다 .
Get-ChildItem C:\foo | Where-Object {$_.mode -match "d"}
스크립트에서 사용했으며 잘 작동합니다.