Files
tldr/pages.ko/windows/get-childitem.md
코드싸이 dfdf2fca64 windows/get*: add Korean translation (#14524)
* windows/get*: add Korean translation

* get-wuapiversion: fix typo

* get-wuapiversion: fix typo

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* pages.ko/windows/getmac: fix typo

Co-authored-by: Chooooo <contact@choo.ooo>

* pages.ko/windows/get-wuapiversion: fix typo

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-03 15:18:35 +09:00

693 B

Get-ChildItem

디렉토리의 항목 나열. 참고: 이 명령은 PowerShell을 통해서만 사용할 수 있습니다. 더 많은 정보: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/get-childitem.

  • 현재 디렉토리의 숨겨지지 않은 모든 항목 나열:

Get-ChildItem

  • 현재 디렉토리의 디렉토리만 나열:

Get-ChildItem -Directory

  • 현재 디렉토리의 파일만 나열:

Get-ChildItem -File

  • 숨겨진 항목을 포함하여 현재 디렉토리의 항목 나열:

Get-ChildItem -Hidden

  • 현재 디렉토리가 아닌 다른 디렉토리의 항목 나열:

Get-ChildItem -Path {{경로\대상\폴더}}