I was wondering if there's a way to wait for a file to be updated, and then read from it once it's updated. So if I have file.txt, I want to wait until something new is written to it, and then read it/process it/etc. Currently I am polling using Time::HiRes::sleep(.01), but I'm wondering if there's a better way. Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
Yes there is a better way. On windows you can use the FileSystemWatcher interface, on Linux, use inotify. Windows
LINUX
|
|||||
|
|
File::Tail will poll the file, but has a few advantages over your approach:
Example from the perldoc:
|
|||
|
|