“Existe pasta VBA do Excel” Respostas de código

Excel VBA Verifique se o diretório existe

Public Function IsDir(s)
    IsDir = CreateObject("Scripting.FileSystemObject").FolderExists(s)
End Function
Excel Hero

Existe pasta VBA do Excel

If Dir("C:\Temp\xxx", vbDirectory) = "" Then
    MsgBox "Doesn't exists"
End If
VasteMonde

Respostas semelhantes a “Existe pasta VBA do Excel”

Perguntas semelhantes a “Existe pasta VBA do Excel”

Mais respostas relacionadas para “Existe pasta VBA do Excel” em VBA

Procure respostas de código populares por idioma

Procurar outros idiomas de código