WScript.Shell对象SpecialFolders属性未公开文档分享
时间:2021-03-23 09:36:28|栏目:VBS|点击: 次
特殊文件夹名称用于索引该集合以检索所需的特殊文件夹,文档中列出了下面的特殊文件夹:
AllUsersDesktop
AllUsersStartMenu
AllUsersPrograms
AllUsersStartup
Desktop
Favorites
Fonts
MyDocuments
NetHood
PrintHood
Programs
Recent
SendTo
StartMenu
Startup
Templates
不过今天在用OllyDbg调试VBS的时候,发现文档中少写了一个AppData文件夹,作文以记之。
'Author: Demon
'Date: 2012-9-25
'Website: http://demon.tw
Dim WshShell
Set WshShell = CreateObject("wscript.Shell")
WScript.Echo WshShell.SpecialFolders("AppData")
原文来自: http://demon.tw/programming/wscript-shell-specialfolders.html
AllUsersDesktop
AllUsersStartMenu
AllUsersPrograms
AllUsersStartup
Desktop
Favorites
Fonts
MyDocuments
NetHood
PrintHood
Programs
Recent
SendTo
StartMenu
Startup
Templates
不过今天在用OllyDbg调试VBS的时候,发现文档中少写了一个AppData文件夹,作文以记之。
复制代码 代码如下:
'Author: Demon
'Date: 2012-9-25
'Website: http://demon.tw
Dim WshShell
Set WshShell = CreateObject("wscript.Shell")
WScript.Echo WshShell.SpecialFolders("AppData")
原文来自: http://demon.tw/programming/wscript-shell-specialfolders.html
上一篇:vbs获取当前路径的代码
栏 目:VBS
下一篇:vbs打开ie两种方法 在VBScript中启动IE浏览器的实现代码
本文标题:WScript.Shell对象SpecialFolders属性未公开文档分享
本文地址:http://www.codeinn.net/misctech/86701.html