Excel VBA -Überprüfen Sie, ob das Verzeichnis vorliegt
Public Function IsDir(s)
IsDir = CreateObject("Scripting.FileSystemObject").FolderExists(s)
End Function
Excel Hero