Function fIsFileDIR(stPath As String, _
Optional lngType As Long) _
As Integer
'Fully qualify stPath
'To check for a file
' ?fIsFileDIR("c:\winnt\win.ini")
'To check for a Dir
' ?fIsFileDir("c:\msoffice",vbdirectory)
'
On Error Resume Next
fIsFileDIR = Len(Dir(stPath, lngType)) > 0
End Function作者: wangxin1978 时间: 2004-4-16 23:15
去看看“FileSearch 对象”吧!作者: 土豆 时间: 2004-4-17 00:16
用DIR判断返回值就行了作者: hamletl 时间: 2004-4-17 01:18
Set fso = CreateObject("Scripting.FileSystemObject")
Filename = "c:\aaa\bbb.txt"
If fso.FileExists(Filename) Then
MsgBox ("FILE,EXIST")
Else
MsgBox ("NOFILE")
End If 作者: hamletl 时间: 2004-4-17 01:24
你可以改成 filename=path & "0002.jpg"
if fso.exists(filename)=false then
filename=path & "ABSENT.jpg"
endif
我以前的一个产品报价程序就是这样做的。
如果暂时没照相,就出现一个图片暂无的提示。