Código:
If FolderExis(Environ("HOMEDRIVE") & "\fotos") = False then
MkDir(Environ("HOMEDRIVE") & "\fotos")
end if
y esta es la funcion
Código:
Public Function FolderExis(ByVal folder As String) As Boolean
If Dir(folder, vbDirectory) = "" Then
FolderExis = False
Else
If Dir(folder, vbDirectory) <> "" Then
FolderExis = True
End If
End If
End Function
alguna idea porque no sirve?