PowerShell: xx 이후에 수정된 파일 나열 및 파일 감시
4239 단어 powershell
x초 후에 수정된 파일을 나열합니다.
Get-ChildItem -Recurse -Force -File | `
where LastWriteTime -gt (Get-Date).AddSeconds(-10) | `
select Name, LastWriteTime
지정된 폴더의 트리 구조를 표시합니다.
tree /F <folder>
지정된 폴더의 개체 생성 및 업데이트를 감시합니다.
$watcher = New-Object System.IO.FileSystemWatcher
$watcher.Path = "my files path"
$watcher.EnableRaisingEvents = $true
$watcher.IncludeSubdirectories = $true
$action = {
$fullPath = $event.SourceEventArgs.FullPath
$name = $event.SourceEventArgs.Name
$changeType = $event.SourceEventArgs.ChangeType
Write-Host "$changeType $name $path"
}
Register-ObjectEvent $watcher 'Changed' -Action $action
#Get-EventSubscriber | Unregister-Event
Reference
이 문제에 관하여(PowerShell: xx 이후에 수정된 파일 나열 및 파일 감시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/kenakamu/powershell-list-files-modified-after-xx-and-watch-files-1mbg텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)