ジャンプ先: 概要. 戻り値. 関連. 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;
}