📜  vba 检查文件是否存在 - VBA 代码示例

📅  最后修改于: 2022-03-11 14:51:55.610000             🧑  作者: Mango

代码示例2
Public Function IsDir(s)
    IsDir = CreateObject("Scripting.FileSystemObject").FolderExists(s)
End Function