📜  xl vba 检查文件夹 - VBA 代码示例

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

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