DirectoryObserver
DirectoryObserver copied to clipboard
A microlibrary for monitoring directory changes
DirectoryObserver
DirectoryObserver is a microlibrary for monitoring directory changes using GCD.
Installation
=======
Cocoapods
- Add the pod DirectoryObserver to your Podfile.
pod 'DirectoryObserver' - Run
pod installfrom Terminal, then open your app's.xcworkspacefile to launch Xcode.
Manually
- Download the source files in the DirectoryObserver subdirectory.
- Add the source files to your Xcode project.
How to use
Get an instance of DirectoryObserver by either instantiation or using the extension method on NSURL:
DirectoryObserver(pathToWatch: NSURL, completion: () -> Void) -> DirectoryObserverNSURL.setupObserver() -> DirectoryObserver
The completion closure will be called when changes are detected and have completed.
let fileManager = NSFileManager.defaultManager()
let directory = fileManager.URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask).first!
directoryWatcher = DirectoryObserver(pathToWatch: directory) {
print("Directory contents have changed")
}
/*
// added method on `NSURL` directly -- equivalent to example above
directoryWatcher = directory.setupObserver() {
print("Directory contents have changed")
}
*/
You may then use the startObserving() or stopObserving() methods to stop/start/resume observing.
===========
DirectoryObserver is a Swift port of MHWDirectoryWatcher