1
我打算在vbs中獲取程序文件文件夾。試過這個沒有運氣;VBS - 獲取程序文件的文件夾路徑?
SET wsc = CreateObject("WScript.Shell")
SET fso = WScript.CreateObject("Scripting.FileSystemObject")
targetpath = wsc.SpecialFolders("ProgramFiles") & "\Google\Chrome\Application\chrome.exe"
它剛剛得到的C:\目錄。什麼是正確的方法來做到這一點?
應僅標記'vbscript'。然而,代替'targetpath = wsc.SpecialFolders(「ProgramFiles」)&...'嘗試'targetpath = wsc.ExpandEnvironmentStrings(「%ProgramFiles%」)&...' – JosefZ 2014-11-06 22:06:07