up vote 8 down vote favorite
1
share [g+] share [fb]

What is the best way to go about monitoring a folder to see when an image file has been added to it? Files are added approximately once a minute and the naming goes like this... image0001.jpg, image0002.jpg, image0003.jpg etc. I need to know when a file has been written to the folder so that my app can access and use it.

link|improve this question
feedback

6 Answers

Look into directory change notifications.

link|improve this answer
feedback

FileSystemWatcher should be able to do that for you.

link|improve this answer
feedback

Change notifactions may cause some overhead, if you've NTFS, consider NTFS change journals.

link|improve this answer
feedback

As per previously mentioned, the directory change notifications is what you want.

I have looked into them as well, and the caveat I have seen is that windows will fire off the notification when the file starts to be written to the folder. If the file is large enough then you will receive the notification before the file has finished being written.

Check out this google search for various solutions for waiting until the file is completely written

Edit: I just saw that the question was tagged with c++, and I linked to a .Net search. Although what I provided may not be the correct language, I would think that you will still have the same issues on Windows no matter what system you are coding with.

link|improve this answer
feedback
  1. Synch.variant FindFirstChangeNotification
  2. Asynch.variant ReadDirectoryChangesW
link|improve this answer
feedback

inotify might be your thing

link|improve this answer
Inotify is Linux-only, unfortunately. – JesperE Oct 28 '08 at 21:40
Hmm. I was under the impression that the librarys were ported to different platforms. – John Nilsson Nov 2 '08 at 19:09
feedback

Your Answer

 
or
required, but never shown