Skip to content

hwaxxer/MHWDirectoryWatcher

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 

MHWDirectoryWatcher

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!

About

A lightweight class for monitoring a directory for changes on iOS.

Resources

License

Stars

Watchers

Forks

Packages

No packages published