Posts

Post not yet marked as solved
4 Replies
0 Views
FinderSync extension is an "application", exactly. but its bundle is named as .appex. when you enable it in System Preferences, macOS will load it automatically (you can check by Activity app or ps -ef command)So, you can easily check it by some code like:runningApps = [[NSRunningApplication runningApplicationsWithBundleIdentifier:@"your.bundle.id"] retain]; if runningApps.count != 0{ // your extension was enabled } else{ //your extension was not enabled yet }