2016-05-22 9 views
0

シンプルなOS Xアプリケーションの実行パスを探しています。私はいつもswiftを使用してOS Xの.app bundleの絶対パスを取得します。

let fileManager = NSFileManager.defaultManager() 
let path = fileManager.currentDirectoryPath 

が、pathをしようとした値/を持っています。 .appが実行された場合など、絶対パスを取得するにはどうすればよいですか?/Users/xxx/sandbox

これは可能ですか?

答えて

1

使用NSBundle

let path = NSBundle.mainBundle().bundleURL.URLByDeletingLastPathComponent!.path! 
関連する問題