移動先: 概要 戻り値 関連項目. MEL 例.

概要

pwd

pwd は 「元に戻す」が不可能「照会」が不可能「編集」が不可能 です。

アプリケーションのカレント作業ディレクトリのパスを表す文字列を返します。Maya が起動したディレクトリから始まりますが、ファイルをブラウズしたり、chdir コマンドによっても変わります。このディレクトリには、systemfopenpopen などのシステムレベルのコマンドがあります。 作業ディレクトリは、シーン データが格納されているワークスペース ディレクトリとは関係がなく、シーンまたはプロジェクト固有のファイルへのアクセスに使用してはいけません。

戻り値

stringカレントの作業ディレクトリ

関連項目

chdir, workspace

MEL 例

// The "pwd" comes in handy here since this proc will just create a
// lockfile in the current working directory, without having to
// explicitly know what it is. It can be used in conjunction with
// the "chdir" command to move amongst various directories that the
// user can vary at will.
//
global proc lockCurrentWorkingDirectory()
{
    string $s = `pwd`;
    int $fileId = `fopen ($s + "/LOCK") "w"`;
    fprint $fileId "LOCKED\n";
    fclose $fileId;
}