[Overview][Constants][Types][Classes][Procedures and functions][Variables] | Reference for unit 'sysutils' (#rtl) |
Search for a file in a path.
Source position: filutilh.inc line 96
function FileSearch( |
const Name: String; |
const DirList: String |
):String; |
FileSearch looks for the file Name in DirList, where dirlist is a list of directories, separated by semicolons or colons. It returns the full filename of the first match found.
On error, an empty string is returned.
|
Expand a relative filename to an absolute filename. |
|
|
Start a file search and return a findhandle |
Program Example41; { Program to demonstrate the FileSearch function. } Uses Sysutils; Const {$ifdef unix} FN = 'find'; P = '.:/bin:/usr/bin'; {$else} FN = 'find.exe'; P = 'c:\dos;c:\windows;c:\windows\system;c:\windows\system32'; {$endif} begin Writeln ('find is in : ',FileSearch (FN,P)); end.
No notes exist for this page yet.