我在使用监控文件夹的脚本时遇到问题。 FileSystemWatcher似乎只检测文件何时被复制到文件夹,而不是当它从同一驱动器移动到文件夹时。 有没有办法检测到这个?
$desFolder = "H:\Media"
$ExFolder = "H:\Monitor"
$Filter = '*.*'
$fsw = New-Object IO.FileSystemWatcher $ExFolder, $Filter
$fsw.IncludeSubdirectories = $true
$fswOnChange = Register-ObjectEvent -InputObject $fsw -EventName Changed -SourceIdentifier FileUpdated -Action {
$File = Get-Item $EventArgs.FullPath
if($File.Name -imatch '\.(?:mp4|mkv)$' -and $file.Name -match '.*?S\d+E+'){
Start-Sleep -s 1
if(Test-FileReady $File.FullName){
Move-Files $File
}
}
}
function global:Test-FileReady {
Param([parameter(Mandatory=$true)][string]$Path)
if (Test-Path -LiteralPath $Path) {
trap {
return $false
}
$stream = New-Object system.IO.StreamReader $Path
if ($stream) {
$stream.Close()
return $true
}
}
}
function global:Move-Files{
Param([parameter(Mandatory=$true)][System.IO.FileInfo]$File)
Write-Host $File.Name
}
答案 0 :(得分:3)
尝试使用Renamed
和Created
事件。
BTW,IO.FileSystemWatcher docs说:
在设置Path并且EnableRaisingEvents为true之前,组件不会监视指定的目录
$fsw.EnableRaisingEvents = $true