Instance Property インスタンスプロパティ

currentDirectoryPath

The path to the program’s current directory. プログラムの持つ現在のディレクトリへのパス。

Declaration 宣言

@property(readonly, copy) NSString *currentDirectoryPath;

Discussion 議論

The current directory path is the starting point for any relative paths you specify. For example, if the current directory is /tmp and you specify a relative pathname of reports/info.txt, the resulting full path for the item is /tmp/reports/info.txt. 現在のディレクトリパスは、あなたが指定するあらゆる相対パスに対する出発点です。例えば、現在のディレクトリが/tmpであり、そしてあなたが相対パス名のreports/info.txtを指定するならば、結果としてその項目に対する完全パスは/tmp/reports/info.txtになります。

When an app is launched, this property is initially set to the app’s current working directory. If the current working directory is not accessible for any reason, the value of this property is nil. You can change the value of this property by calling the changeCurrentDirectoryPath: method. アプリが起動される時、このプロパティは初めにアプリの持つ現在の作業ディレクトリに設定されます。現在の作業ディレクトリが何らかの理由でアクセス可能でないならば、このプロパティの値はnilです。あなたは、このプロパティの値をchangeCurrentDirectoryPath:メソッドを呼び出すことによって変更できます。

See Also 参照

Managing the Current Directory 現在のディレクトリを管理する

Related Documentation 関連文書