Desktop Functions: Smart Device Functions:
|
PathFindOnPath (shlwapi)
C# Signature:
[DllImport("shlwapi.dll", SetLastError=true)] VB Signature:
Declare Function PathFindOnPath Lib "shlwapi.dll" (TODO) As TODO Notes:Make sure pszFile has enough space for MAX_PATH characters. ppszOtherDirs is a list of specific directories to search first. It can be null if you want to search only the PATH. If you pass some additional directories in ppszOtherDirs, be sure to add an extra null to the array (otherwise, it will crash in case the file is not found). ppszOtherDirs is a list of specific directories to search first. It can be null if you want to search only the PATH. This function does not include the current dir or the application launch dir in its search. Tips & Tricks:None. Sample Code:
int MAX_PATH=260; Alternative Managed API:None that I could find. Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|