s77m72 发表于 2008-10-26 17:44:12

如何判断当前文件是否存在??

我的想法是这样的,想写一个判断话句,判断AU3所在的文件夹是否存在指定的文件.有人会吗?
请指教一下!!

[ 本帖最后由 s77m72 于 2008-10-28 15:53 编辑 ]

dos123 发表于 2008-10-26 17:59:58

If FileExists("C:\autoexec.bat") Then
    MsgBox(4096, "C:\autoexec.bat File", "Exists")
Else
    MsgBox(4096,"C:\autoexec.bat File", "Does NOT exists")
EndIf

If FileExists("C:\") Then
    MsgBox(4096, "C:\ Dir ", "Exists")
Else
    MsgBox(4096,"C:\ Dir" , "Does NOT exists")
EndIf

If FileExists("D:") Then
    MsgBox(4096, "D: Drive", "Exists")
Else
    MsgBox(4096,"D: Drive", "Does NOT exists")
EndIf

78391493 发表于 2008-10-26 18:45:56

Else是什么意思呢?

s77m72 发表于 2008-10-26 19:39:36

这不是判断指定的文件夹吗?我是在判断当前的啊?

78391493 发表于 2008-10-26 19:42:15

回复 4# s77m72 的帖子

用@ScriptDir就可以了啊

liongodmien 发表于 2008-10-26 21:59:26

If fileexists(@scriptDir & '\指定的文件名') then msgbox(0,'','有指定的文件')
页: [1]
查看完整版本: 如何判断当前文件是否存在??