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

vbs常用函数

时间:2018-08-30 23:33:59      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:des   ext   delete   res   crlf   sub   goto   ber   let   

aa

 

删除文件夹
sub DeleteFolder(objFolder)
    call OutputLog(objFolder.Path,true)
    err.Clear
    On Error Resume Next
    objFolder.attributes=0
    objFolder.delete
    On Error Goto 0
    if Err.Number then
        Msgbox "删除文件夹[" & objFolder.Path & "]失败" & vbcrlf & Err.Description
    end if
end sub

 

删除文件
sub DeleteFile(objFile)
    call OutputLog(objFile.Path,false)
    err.Clear
    On Error Resume Next
    objFile.attributes=0
    objFile.delete
    On Error Goto 0
    if Err.Number then
        Msgbox "删除文件[" & objFolder.Path & "]失败" & vbcrlf & Err.Description
    end if
end sub

 

vbs常用函数

标签:des   ext   delete   res   crlf   sub   goto   ber   let   

原文地址:https://www.cnblogs.com/SilenceRet/p/9563145.html

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