PathStripToRootW function (shlwapi.h)
Removes all file and directory elements in a path except for the root information.
BOOL PathStripToRootW(
[in, out] LPWSTR pszPath
);
[in, out] pszPath
Type: LPTSTR
A pointer to a null-terminated string of length MAX_PATH that contains the path to be converted. When this function returns successfully, this string contains only the root information taken from that path.
Type: BOOL
Returns TRUE if a valid drive letter was found in the path, or FALSE otherwise.
Note
The shlwapi.h header defines PathStripToRoot as an alias that automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that is not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional, Windows XP [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Target Platform | Windows |
Header | shlwapi.h |
Library | Shlwapi.lib |
DLL | Shlwapi.dll (version 4.71 or later) |