var currentDirectoryPath : String
Use run(_:
instead.
Deprecated 非推奨
Use run(_:
instead.
Availability 有効性
Technology
path
The path to the executable. 実行可能ファイルへのパス。
arguments
An array of NSString
objects that supplies the arguments to the task. If arguments
is nil
, an NSInvalid
is raised.
タスクへの引数を提供するNSString
オブジェクトそれらの配列。arguments
がnil
ならば、NSInvalid
が引き起こされます。
An initialized NSTask
object with the supplied arguments
.
The task inherits its environment from the process that invokes this method. タスクは、それの環境をこのメソッドを発動するプロセスから継承します。
The NSTask
object converts both path
and the strings in arguments
to appropriate C-style strings (using file
) before passing them to the task via argv[])
.
NSTask
オブジェクトは、arguments
の中のpath
と文字列の両方を適切なC形式文字列へと変換します(file
を使って)、それらをタスクへとargv[]
経由で渡す前にです。
The strings in arguments
don’t undergo shell expansion, so you don’t need to do special quoting, and shell variables, such as $PWD
, aren’t resolved.
var currentDirectoryPath : String
init()