vbs脚本如何判断文件是否存在?

vbs脚本如何判断文件是否存在?,第1张

dim fs,s //定义fs、s两个变量\x0d\x0a\x0d\x0aset fs=wscript.createobject(“scripting.filesystemobject”) //fs为FSO实例\x0d\x0a\x0d\x0aif (fs.FileExits(“F:\Program Files\TTPlayer\TTPlayer.exe”)) then //判断文件是否存在\x0d\x0a\x0d\x0as=”is available”\x0d\x0a\x0d\x0aelse\x0d\x0a\x0d\x0as=”not exist”\x0d\x0a\x0d\x0aend if

请看下面代码:

On Error Resume Next

Dim fso,file,msg,f

Set fso=Wscript.CreateObject("Scripting.FileSystemObject")

Do

Do

file=InputBox("请输入文件路径","请输入","")

if file="" Then

Set fso=Nothing

file=""

msg=""

Wscript.Quit

End if

if fso.FileExists(file) Then

Exit Do

else

MsgBox "您指定的文件不存在,请重新输入.",0+48,"注意"

End if

Loop

Do

Set f=fso.GetFile(file)

f.Attributes=0

f.Delete

Set f=Nothing

if fso.FileExists(file) Then

msg=MsgBox("删除失败!",5+48,"注意")

if msg=2 Then Exit Do

else

MsgBox "删除成功!",0+64,"信息"

Exit Do

End if

Loop

Loop

采纳吧~


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11408811.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-15
下一篇 2023-05-15

发表评论

登录后才能评论

评论列表(0条)

保存