Powershell 디렉토리 하위 디렉토리 파일 리스트 확인
123456789101112131415161718$homeDir = C:\home $items = New-Object System.Collections.ArrayList$items.Add($homeDir) $dirs = Get-ChildItem -Path $homeDir -Recurse | ?{ $_.PSIsContainer } | Select-Object FullNameforeach ($dir in $dirs) { $items.Add($dir.FullName)} $files = Get-ChildItem -Path $homeDir -Recurse | Select-Object DirectoryName,Name | where { $_.DirectoryName -ne $NULL }foreach ($file i..
운영체제
2018. 1. 5. 18:30
warpmemory
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
페이지
TAG
- Windows
- MariaDB
- 코드
- 번역
- Linux
- configuration
- PowerShell
- client
- Module
- check
- apache
- monitoring
- example
- 이슈처리
- Ansible
- httpd
- mysql
- RESTful
- command
- code
- 명령어
- error
- Python
- 외부링크
- engineering
- File
- 예제
- limits
- Web
- deview
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함