VB Code:
  1. If Dir$("c:\somedir", vbDirectory) <> "" Then
  2.    'directory exists
  3. Else
  4.    'directory doesn't exist
  5. End If
That should work even if the dir has no files in it, since you're explicitly looking for the dir.