Finding Files in Path Path Environment Variable Paths

Is there any function (in Delphi) that can give the full path and file name that is in one of the paths in the Path environment variable, for example:

Fn: = FindFileEnv ('my.dll', EnvPath); 

which returns for example

Fn = 'c:\windows\system32\my.dll'
+5
source share
1 answer

Call SearchPath .

+5
source

All Articles