Sometimes #Claude has a tendency to mix #UIKit and #AppKit.
I experience quite often that it writes some code using methods from UIKit that just does not exist in AppKit...
Today will be about implementing a solution to monitor changes to the filesystem. More specifically, my notes app needs to be able to know when the user modifies their Space vault from outside the app.
Currently, the app will not update the list of files if the user manipulates the vault through Finder.
E.g., if the user renames or deletes files in their Space vault. _(the vault is just the root folder containing all the files and directories in the Space)_
From the research I've done, it seems like `DispatchSourceFileSystemObject` is what I need to be using.
