在excel-vba中做什么=“”

时间:2013-02-14 06:53:44

标签: excel vba excel-vba excel-2010

这会怎么做?

If Dir(path) = " " Then  
    path = " "

1 个答案:

答案 0 :(得分:2)

引号之间有不必要的空格

代码基本上要做的是检查相关文件,目录或文件夹是否存在。请参阅此示例,该示例检查文件是否存在。

Option Explicit

Sub Sample()
    Dim sPath As String

    sPath = "C:\Temp\MyFile.xls"

    If Dir(sPath) = "" Then
        MsgBox "File not found"
    Else
        MsgBox "File found"
    End If
End Sub

有关DIR here

的更多信息