0 out of 1 rated this helpful - Rate this topic

PathSearchAndQualify function

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

Syntax


BOOL PathSearchAndQualify(
  _In_   LPCTSTR pcszPath,
  _Out_  LPTSTR pszFullyQualifiedPath,
  _In_   UINT cchFullyQualifiedPath
);

Parameters

pcszPath [in]

Type: LPCTSTR

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

pszFullyQualifiedPath [out]

Type: LPTSTR

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

cchFullyQualifiedPath [in]

Type: UINT

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

Return value

Type: BOOL

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

Requirements

Minimum supported client

Windows 2000 Professional, Windows XP [desktop apps only]

Minimum supported server

Windows 2000 Server [desktop apps only]

Header

Shlwapi.h

Library

Shlwapi.lib

DLL

Shlwapi.dll (version 4.71 or later)

Unicode and ANSI names

PathSearchAndQualifyW (Unicode) and PathSearchAndQualifyA (ANSI)

 

 

Send comments about this topic to Microsoft

Build date: 11/28/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.