获取用户目录下所有快捷方式的url
来源:未知 责任编辑:智问网络 发表时间:2013-11-08 08:47 点击:次
Set WshShell = Wscript.CreateObject("Wscript.Shell")
Function TreeIt(sPath)
Set oFso = CreateObject("Scripting.FileSystemObject")
Set oFolder = oFso.GetFolder(sPath)
Set oSubFolders = oFolder.Subfolders
Set oFiles = oFolder.Files
For Each oFile In oFiles
If oFso.GetExtensionName(oFile) = "lnk" Or oFso.GetExtensionName(oFile) = "url" Then
Set oMyShortcut = WshShell.CreateShortcut(oFile)
wscript.echo oMyShortcut.targetpath
End If
Next
For Each oSubFolder In oSubFolders
TreeIt(oSubFolder.Path)'递归
Next
Set oFolder = Nothing
Set oSubFolders = Nothing
Set oFso = Nothing
End Function
TreeIt("C:\Documents and Settings")
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 进入详细评论页>>