MHWDirectoryWatcher 0.0.6

MHWDirectoryWatcher 0.0.6

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Jan 2015

Maintained by Martin Hwasser.



  • By
  • Martin Hwasser

MHWDirectoryWatcher is a lightweight class that uses GCD to monitor a given path for changes. When any change to the directory occurs, MHWDirectoryWatcher starts polling the monitored path, making sure that file transfers are finished before posting notifications.

Installing

Copy MHWDirectoryWatcher.h+m into your project.

(or use CocoaPods)

Usage via blocks

Get an instance of MHWDirectoryWatcher using the factory method +directoryWatcherAtPath:callback: and it will start monitoring the path immediately. Callback occurs after files have changed.

Example:

_dirWatcher = [MHWDirectoryWatcher directoryWatcherAtPath:kDocumentsFolder callback:^{
                  // Actions which should be performed when the files in the directory 
                  [self doSomethingNice];
               }];

Call -stopWatching / -startWatching to pause/resume.


Used in Kobo and Readmill (RIP, acquired by Dropbox).

If you like this repository and use it in your project, I'd love to hear about it!