バッチシーケンスファイルのあるパスを表示する
対応バージョン

3.0a 4.0 4.05 5.0 6.0
Windows
×
×
×
×

Macintosh
×
×
×
×

ポイント
path = app.getPath("user","sequences");
説  明
バッチシーケンスファイルのあるパスはgetPathにuser, sequencesを指定すると取得することができます。ただし、ユーザー定義のシーケンスファイルがない場合にはエラーになるためtry,catchを使ってエラー処理を行なう必要があります。
サンプル

try {
path = app.getPath("user","sequences");
this.getField("result").value = "ユーザー定義シーケンスのパス:"+path;
} catch(e) {
this.getField("result").value = "ユーザー定義のシーケンスはありません";
}


 
サンプル
補足説明
なし