Powershell - 监听文件,如果文件存在则执行某些操作

时间:2017-07-21 20:03:04

标签: powershell filesystems actionlistener

Powershell中有没有办法“监听”文件?

在jQuery(对于文本字段)中,您可以执行以下操作:

$("#textarea").on("change",function () { // do something });

这会立即捕捉到的变化

我见过这样的代码:

while (!(Test-Path "C:\flag.txt")) { Start-Sleep 1 }

但这似乎是无效的;这是不断检查文件,它不是即时的(检查之间1秒)。

0 个答案:

没有答案