Hi,
I would like to check if the file C:\Readme.txt exists. I know an API call is needed here because I once knew how to do it but I've now forgot. Could someone please help me? Thanks!
Printable View
Hi,
I would like to check if the file C:\Readme.txt exists. I know an API call is needed here because I once knew how to do it but I've now forgot. Could someone please help me? Thanks!
API call? For such a thing? hm...
;)Code:If Not Dir("C:\Readme.txt") = "" Then
'File exists
EndIf
Thanks for the help Fox! I thought it was an API but I was wrong.