SkillAgentSearch skills...

MHWDirectoryWatcher

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

Install / Use

/learn @hwaxxer/MHWDirectoryWatcher
About this skill

Quality Score

0/100

Category

Operations

Supported Platforms

Universal

README

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!

View on GitHub
GitHub Stars86
CategoryOperations
Updated7mo ago
Forks12

Languages

Objective-C

Security Score

87/100

Audited on Aug 21, 2025

No findings