macos 15.4 beta claims to support FSKit. Is there an FSKit sample available? I don't see anything useful in the published docs.
Is there an FSKit sample available?
Not an official one from Apple.
Apple's open source implementation of the MSDOS filesystem
You have to be careful here. While the msdos.appex
target is based on FSKit technology, the FSKit API evolved quite a bit during its evolution over the macOS 15 lifecycle. So it’s fine to consult this for ideas, but you may well run into the relevant differences.
The one that springs immediately to mind is that your module’s main entry point must be in Swift [1].
The best way to get your packaging right is to start from the macOS > File System Extension template in the Xcode 16.3 beta.
[Darwin] projects typically won't build outside of Apple's internal system.
Very true.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"
[1] Due to the fact that FSKit is based on modern appex technology, that is, ExtensionFoundation / ExtensionKit.