如何判断当前文件是否存在??
我的想法是这样的,想写一个判断话句,判断AU3所在的文件夹是否存在指定的文件.有人会吗?请指教一下!!
[ 本帖最后由 s77m72 于 2008-10-28 15:53 编辑 ] 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 Else是什么意思呢? 这不是判断指定的文件夹吗?我是在判断当前的啊?
回复 4# s77m72 的帖子
用@ScriptDir就可以了啊 If fileexists(@scriptDir & '\指定的文件名') then msgbox(0,'','有指定的文件')
页:
[1]