mirror of
https://github.com/maxgoedjen/secretive.git
synced 2024-11-22 05:27:28 +00:00
22 lines
535 B
Swift
22 lines
535 B
Swift
import Foundation
|
|
|
|
struct ApplicationDirectoryController {
|
|
}
|
|
|
|
extension ApplicationDirectoryController {
|
|
|
|
var isInApplicationsDirectory: Bool {
|
|
let bundlePath = Bundle.main.bundlePath
|
|
for directory in NSSearchPathForDirectoriesInDomains(.allApplicationsDirectory, .allDomainsMask, true) {
|
|
if bundlePath.hasPrefix(directory) {
|
|
return true
|
|
}
|
|
}
|
|
if bundlePath.contains("/Library/Developer/Xcode") {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
}
|