callSystem()
記述
system.callSystem(cmdLineToExecute)
概要
ユーザーがOSのコマンドラインで使用可能なシステムコマンドを実行します。コマンドを実行した出力結果があれば、何であれ戻り値として返します。
引数
cmdLineToExecute
A string containing the command and its parameters.
戻り値
コマンドからの出力結果
ノート
Windowsでは、ユーザーはcmd.exeを呼び出すために"/c"スイッチを使用し、実行コマンドをエスケープ文字で囲んでcmd.exeに渡します。
timeコマンドで時刻を取得してAfter Effectsのアラートで表示
var timeStr = system.callSystem("cmd.exe /c \"time /t\"");
alert("Current time is " + timeStr);