VBS(VBScript)によるカレントディレクトリの設定・参照をする方法を紹介
カレントディレクトリの設定・参照をする方法
サンプルソース
カレントディレクトリの参照
(入力)
Dim fs
Set fs = WScript.CreateObject("WScript.Shell")
WScript.Echo fs.CurrentDirectory
(出力)
C:\WINDOWS\system32
サンプルソース
カレントディレクトリの変更(設定)
(入力)
Dim fs
Set fs = WScript.CreateObject("WScript.Shell")
fs.CurrentDirectory = "f:\"
WScript.Echo fs.CurrentDirectory
(出力)
f:\