如何实现用VBS脚本打开我设置在快捷键里路径的文件夹
如何实现用VBS脚本打开我设置在快捷键里路径的文件夹。就是用VBS脚本调用快捷键里路径打开文件夹
2021-10-01 01:43
2021-10-06 01:00
程序代码:
s=inputbox("输入路径","输入框","c:")
if s<>"" then
Set obj = createobject("wscript.shell")
obj.run "cmd /c explorer " & s ,2
end if
2021-10-06 11:40
2021-10-07 00:31
2022-01-02 17:36
2022-01-02 17:39