如何使用VBA Excel 2007确定文件是否存在?

时间:2010-11-02 22:10:24

标签: excel-vba vba excel

我正在尝试重写一些使用FileSearch for Excel 2003 VBA的代码。我正在尝试调用一个应该确定1或0并使用If语句的函数,我将执行一些代码或迭代到下一个文件。

我没有从我的函数返回正确的结果。

我的代码:

 Dim MyDir As String, Fn As String
 Dim MyFile As String

   MyDir = "C:Test\"
   Fn = "" & "" & Examiner & " " & MnName & " " & Yr & ".xls"
   MyFile = MyDir & """" & Fn & """"

    If FileThere(MyFile) Then
    MsgBox yes

    Else
    MsgBox Not there

    End If

    '''''''''''''''''
    Function FileThere(FileName As String) As Boolean
         FileThere = (Dir(FileName) > "")
    End Function

1 个答案:

答案 0 :(得分:9)

Sub a()

MsgBox "test1 " & FileThere("c:\test1.bat")
MsgBox "k1" & FileThere("c:\k1")

End Sub

Function FileThere(FileName As String) As Boolean
     If (Dir(FileName) = "") Then
        FileThere = False
     Else:
        FileThere = True
     End If
End Function