Ok this code below works for a file
If Dir$("\windows\car") <> "" Then
msgbox "The File Car Exist"
Else
msgbox "The File Doesn't Exist"
end if

-------

But i don't want to do it for a file i want to do it with a dir.

If Dir$("\windows\") <> "" Then
msgbox "The File Car Exist"
Else
msgbox "The File Doesn't Exist"
end if

If it exist, I get the right msg box...if it doesnt exist....i get a error that path doesnt exist.....y doesnt it skip to the else statement like the file does? And how can i fix it....thanks!