- changeCurrentDirectoryPath:
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
, the resulting full path for the item is /tmp/reports/info
.
現在のディレクトリパスは、あなたが指定するあらゆる相対パスに対する出発点です。例えば、現在のディレクトリが/tmp
であり、そしてあなたが相対パス名のreports/info
を指定するならば、結果としてその項目に対する完全パスは/tmp/reports/info
になります。
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 change
method.
アプリが起動される時、このプロパティは初めにアプリの持つ現在の作業ディレクトリに設定されます。現在の作業ディレクトリが何らかの理由でアクセス可能でないならば、このプロパティの値はnil
です。あなたは、このプロパティの値をchange
メソッドを呼び出すことによって変更できます。
Warning 警告
This property reports the current working directory for the current process, not just the receiver. このプロパティは、単にレシーバではなく、現在のプロセスに対する現在の作業ディレクトリを報告します。