Search function

PiluCar

New Member
HI,

Is it possible to search a not specific file with the search function.

Exemple : SEARCH("C:\FIEL-*.*") or someting like that.

Thanks
 
And what would you expect it to return, given that the result is boolean?

Have you looked at FILE-INFO?
 
As search function returns boolean value, you cannot give that path inside search function. It will be ambigous for search function to find the file. You can always find single file name using search function.

If you want result for that then there is one alternative way, you can import one file name (begins with "FILE-") through "input from OS-DIR" statement and check whether the filename variable is not null. If it is not null then file exists.
 
Back
Top