5
私はWindowsシステム上でFile::ChangeNotifyをインストールし、次のコードを実行しよう:私はスクリプトを実行したときWindowsでFile :: ChangeNotifyを使用するにはどうすればよいですか?
my $watcher =
File::ChangeNotify->instantiate_watcher
(directories => [ 'C:\files' ],
filter => qr/\.txt$/
);
# # blocking
while (my @events = $watcher->wait_for_events()) { print "new event"}
を、スクリプトが何も印刷されませんでしたc:\files
の下に新しい.txt
ファイルを作成したり、.txt
ファイルを変更しよう。
ありがとうございました – user3019319
新しいイベントを印刷する\ n " – cjm
@cjm:ありがとうございます。私は自分の答えを更新しました。 – toolic