Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.26 KB

PathSearchAndQualify.md

File metadata and controls

51 lines (36 loc) · 1.26 KB

Home

Function name : PathSearchAndQualify

Group: Shell Lightweight Utility APIs -- Path Functions - Library: shlwapi


Determines if a given path is correctly formatted and fully qualified.


Code examples:

Converting path to original case

Declaration:

BOOL PathSearchAndQualify(
  __in   LPCTSTR pcszPath,
  __out  LPTSTR pszFullyQualifiedPath,
  __in   UINT cchFullyQualifiedPath
);  

FoxPro declaration:

DECLARE INTEGER PathSearchAndQualify IN Shlwapi;
	STRING pcszPath,;
	STRING @pszFullyQualifiedPath,;
	INTEGER cchFullyQualifiedPath  

Parameters:

pcszPath [in] A pointer to a null-terminated string of maximum length MAX_PATH that contains the path to search.

pszFullyQualifiedPath [out] A pointer to a null-terminated string of length MAX_PATH that contains the path to be referenced.

cchFullyQualifiedPath [in] The size of the buffer pointed to by pszFullyQualifiedPath, in characters.


Return value:

Returns TRUE if the path is qualified, or FALSE otherwise.