Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Check for a file
Message
 
To
06/10/1998 06:49:37
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00144148
Message ID:
00144149
Views:
25
Hi John,

>I am trying to verify if a file is present on the disk. I have tried FILE() but it also checks along the path and returns true if it finds the file anywhere. If I have a full file name how can I verify that it is present on the disk?

If you pass the full path and name to FILE() it should not look anywhere else. Alternatively you can use ADIR():
LOCAL laFile[1]
IF ADIR(laFile,"MyFile") > 0
   * File does exist
ENDIF
Christof
--
Christof
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform