in reply to Re: Perl process to constantly detect the time change of a file?
in thread Perl process to constantly detect the time change of a file?

I think this is an excellent advice as it looks at the problem from a different perspective. Instead of polling the time the file was last changed, you wait for the file to change. (this of course assumes you can read from the file)

++stefp++

Update: Actually, coming to read the original post again, this will not work if the file is "touched" by another process, only if appended to. Nonetheless, --stefp++ :-)

  • Comment on Re: Re: Perl process to constantly detect the time change of a file?