码迷,mamicode.com
首页 > 其他好文 > 详细

本地vbs调试快速显示输出

时间:2014-07-31 16:11:36      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   cti   ar   

function setClipBoard(str)
    Set WshShell = CreateObject("WScript.Shell")
    Set oExec = WshShell.Exec("clip")
    Set oIn = oExec.stdIn
    oIn.WriteLine str
    oIn.Close

    Do While oExec.Status = 0
            WScript.Sleep 100
    Loop

    Set oIn = Nothing
    Set oExec = Nothing
end function


dim fso 
dim files
set fso = CreateObject("Scripting.FileSystemObject")
set files = fso.getfolder("C:\Data").files

dim result

for each file in files
    if lcase(fso.GetExtensionName(file.path)) = "mdf" then
        result = result & file.name & vbcrlf
    end if
next

setClipBoard(result)

 

存为*.vbs,双击即可。

 

本地vbs调试快速显示输出,布布扣,bubuko.com

本地vbs调试快速显示输出

标签:style   blog   color   os   io   for   cti   ar   

原文地址:http://www.cnblogs.com/nanfei/p/3880588.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!