DIAdemで実行中のスクリプトの名前とパスを取得する

更新しました May 31, 2023

使用製品

ソフトウェア

  • DIAdem

問題

DIademで実行しているスクリプトの名前とパスはどのように取得できますか?

解決策

変数CurrentScriptNameおよびCurrentScriptPathを使用する事で実行中のスクリプトが保存されているファイルパスとスクリプトファイルの名前を取得できます。次のコードは、VBScriptのファイルパスと名前を返します。

dim Spath : Spath = CurrentScriptPath
dim Sname : Sname = CurrentScriptName
Call MsgBoxDisp(Spath)
Call MsgBoxDisp(Sname)