代码运行时没有错误,但是当我在文件系统中添加/删除文件时,代码不会执行Register-ObjectEvent $watcher "watchType" -Action $action
中应该执行的操作。我知道这一点,因为在过去,它正在工作,并将创建/添加log.txt
删除/添加的文件及其日期的记录。现在,没有任何反应。发生了什么事?
代码:
#local path of the folder you want to sync. By default sets to current directory
$localPath = get-location
#filter specific files by name/type
$filter = "*.*"
#include subdirectories
$inclSubDirectories = $true
#end of user defined variables
$watcher = New-Object System.IO.FileSystemWatcher
$watcher.Path = $localPath
$watcher.Filter = $filter
$watcher.IncludeSubdirectories = $inclSubDirectories
$watcher.EnableRaisingEvents = $true
$oldContent = ""
$action = {
$path = $Event.SourceEventArgs.FullPath
$changeType = $Event.SourceEventArgs.ChangeType
$logline = "$(Get-Date), $changeType, $path"
Add-content "'$localPath'\log.txt" -value $logline
}
$created = Register-ObjectEvent $watcher "Created" -Action $action
$action1 = {
$path = $Event.SourceEventArgs.FullPath
$changeType = $Event.SourceEventArgs.ChangeType
$logline = "$(Get-Date), $changeType, $path"
Add-content "'$localPath'\log.txt" -value $logline
}
$deleted = Register-ObjectEvent $watcher "Deleted" -Action $action1
$exitAction = {
"File wathcer unregistered!"
Unregister-Event $created
Unregister-Event $deleted
}
$exit = Register-EngineEvent PowerShell.Exiting -action $exitAction
while ($true) {
if($oldContent -eq $logline){}
else{
$logline
$oldContent = $logline
}
Start-Sleep -m 1000
}
修改
我决定尝试将代码直接复制并粘贴到PowerShell中,它的工作方式应该是...... 不完全,它不输出,但它确实更新log.txt,就像它应该如何。 实际上,它只工作过一次。现在又回到了以前的状态。
编辑v2
当我复制粘贴到PowerShell中时,每个事件(创建,然后删除)似乎只工作一次(例如,它会注册一个在日志中删除的文件,然后它会注册一个创建的文件,但它不会'做其他事情。)它仍然没有像它应该那样输出。
答案 0 :(得分:1)
我可以在这里看到您的$localpath
拥有当前路径,当您Add-Content
时出现问题。
在下面的行中,路径中有singelqoutes,它不存在任何方式。
Add-content "'$localPath'\log.txt" -value $logline
只需打印"'$localPath'\log.txt"
即可查看。
正确表达将为Add-content "$localPath\log.txt" -value $logline
除了每次执行Register-ObjectEvent
之外,还会创建一个作业,尝试
Receive-Job -Id <Job ID> -keep
了解正在发生的事情。
此致
kvprasoon