Board logo

标题: [技术讨论] vbs根据指定的目录路径关闭已打开的文件夹窗口 [打印本页]

作者: pcl_test    时间: 2018-4-1 23:54     标题: vbs根据指定的目录路径关闭已打开的文件夹窗口

本帖最后由 pcl_test 于 2018-4-2 09:12 编辑
  1. fdpath="D:\123\test"
  2. arr=Split("%,{,},[,],&,^,#,`, ", ",")
  3. fdpath=Replace(fdpath, "\", "/")
  4. If Right(fdpath, 1) = "/" Then fdpath=Left(fdpath, Len(fdpath)-1)
  5. If Len(fdpath) = 2 Then fdpath=fdpath & "/"
  6. Set ShellApp = CreateObject("Shell.Application")
  7. Set oWindows = ShellApp.Windows
  8. For Each SubWds In oWindows
  9.     If LCase(SubWds.LocationURL) = LCase("file:///" & encode(fdpath, arr)) Then
  10.         SubWds.Quit()
  11.     End If
  12. Next
  13. Function encode(ByVal path, ByRef arr)
  14.     For i=0 To UBound(arr)
  15.         path=Replace(path, arr(i), "%" & Hex(Asc(arr(i))))
  16.     Next
  17.     encode=path
  18. End Function
复制代码

作者: /zhqsystem/zhq    时间: 2018-4-2 00:08

顶一个,这个可以有,包含空格文件夹未能成功关闭静待修复
作者: 小渣飞    时间: 2018-4-7 19:41

请问一下这个怎么无限运行




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2