|
发表于 2011-11-7 15:20:49
|
显示全部楼层
FileExists
--------------------------------------------------------------------------------
检查指定文件或目录是否存在.
FileExists ( "路径" )
参数
路径 要检查的文件或目录的路径.
返回值
成功: 返回值为1.
失败: 返回值为0,说明指定的路径/文件并不存在.
注意/说明
如果指定路径参数为未插入磁盘的软驱则 FileExists 的返回值为0.
相关
FileGetAttrib, DriveStatus
示例/演示
If FileExists("C:\autoexec.bat") Then
MsgBox(4096, "C:\autoexec.bat 文件", "C:\autoexec.bat 文件存在")
Else
MsgBox(4096,"C:\autoexec.bat 文件", "C:\autoexec.bat 文件不存在")
EndIf
If FileExists("C:\") Then
MsgBox(4096, "C:\ 目录 ", "C:\ 目录存在")
Else
MsgBox(4096,"C:\ 目录" , "C:\ 目录不存在")
EndIf
If FileExists("D:") Then
MsgBox(4096, "驱动器 D:", "驱动器D:存在")
Else
MsgBox(4096,"驱动器 D:", "驱动器D:不存在")
EndIf |
|