请问如何判断文件是否存在

脚本如下,文件明明就存在,可为什么判断为不存在?谢谢了
Dim FS
Set FS = CreateObject("Scripting.FileSystemObject")

Dim Month,Day,Hour,Minute
Dim path,path1

Month=HMIRuntime.Tags("month").read
Day=HMIRuntime.Tags("day").read
Hour=HMIRuntime.Tags("hour").read
Minute=HMIRuntime.Tags("minute").read
path="E:\temp\ee\"&Month&Day&hour&Minute
path1=path&".xls"

If FS.FolderExists(path1) = True Then 
 MsgBox "11"
Else
 MsgBox "22"
End If

最佳答案

这句错了
If FS.FolderExists(path1) = True Then

提问者对于答案的评价:
谢谢了,已解决.

原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc300537.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2020年10月31日 下午2:38
下一篇 2020年10月31日 下午2:38

相关推荐