Group: Shell Functions - Library: shell32
Accessing the list of Windows Recent Documents
Displaying system dialog that selects a folder
Browsing Windows Known Folders (Special Folders)
BOOL SHGetPathFromIDList(
LPCITEMIDLIST pidl,
LPTSTR pszPath
); DECLARE INTEGER SHGetPathFromIDList IN shell32;
INTEGER pidl,;
STRING @ pszPath pidl Address of an item identifier list that specifies a file or directory location relative to the root of the namespace (the desktop).
pszPath Address of a buffer to receive the file system path. This buffer must be at least MAX_PATH characters in size.
Returns TRUE if successful, or FALSE otherwise.
See also: SHSimpleIDListFromPath, SHParseDisplayName.
Home