home *** CD-ROM | disk | FTP | other *** search
/ PCNET 2006 September - Disc 1 / PCNET_CD_2006_09.iso / shareware / autoit-v3-setup.exe / Examples / Helpfile / FileExists.au3 < prev    next >
Encoding:
Text File  |  2006-06-17  |  113 b   |  6 lines

  1. If FileExists("D:\") Then
  2.     MsgBox(4096, "", "D: exists.")
  3. Else
  4.     MsgBox(4096,"", "D: does not exist.")
  5. EndIf
  6.