checking the existence of a file

R

Rli

Maybe a stupid question, but can't find the awnser:
How can i check the existence of a file (for instance "c:/images/image.jpg")
in an access macro?
any help is welcom
 
S

Steve Schapel

Rli,

In the Condition column of the macro design...
Len(Dir("C:/images/image.jpg"))
 
Top