i'm trying to see if a user inserted the correct cd. i'm doing this by checking if a file exists on the cd drive. my question is, can i use wildcard characters to see if a file exists? example:

Code:
If fso.FileExists("D:\*.cde") = True Then MsgBox "yes"
this doesn't seem to work. if i enter the complete file name, it works.