in reply to Re: monitoring file changes (win32)
in thread monitoring file changes (win32)

Hello and thank you for the hint. The solution so far seems to be to thread the application, run $watcher->get_results() every 10 seconds, stat() each file and if the modification date is less than localtime()-10 ignore it. It should be picked by the next run. On to reading how threads work in Win32..