VBScript: カレントディレクトリを取得する

' get_current_dir.vbs ' 公開:2013年3月5日 ' 言語:VBScript ' 説明:カレントディレクトリを取得する。 Dim WshShell Set WshShell = WScript.CreateObject("WScript.Shell") MsgBox(WshShell.CurrentDirectory)
〘戻る〙