PathIsLFNFileSpecA function (shlwapi.h)
Determines whether a file name is in long format.
BOOL PathIsLFNFileSpecA(
[in] LPCSTR pszName
);
[in] pszName
Type: LPCTSTR
A pointer to a null-terminated string of maximum length MAX_PATH that contains the file name to be tested.
Type: BOOL
Returns TRUE if pszName exceeds the number of characters allowed by the 8.3 format, or FALSE otherwise.
Pastaba
The shlwapi.h header defines PathIsLFNFileSpec 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 5.0 or later) |