Nick Mullen

Results 2 comments of Nick Mullen

Here is my AppDelegate.swift didFinishLaunching method ` func applicationDidFinishLaunching(_ aNotification: Notification) { print("Initializing application") let filewatcher = FileWatcher([NSString(string: "~/Downloads").expandingTildeInPath]) filewatcher.callback = { event in print("Something happened here: " + event.path)...

Awesome, thank you so much! Has this change been pushed to the repo yet? I tried replacing FIleWatcherEvent.swift with the one from the latest commit 2 days ago, but I'm...