Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bypassing MAX_PATH limitation for ITEMIDLIST?

Is there any known way (whether documented or otherwise) to create an ITEMIDLIST structure from a path, such as with ILCreateFromPath, while bypassing the MAX_PATH limitation on the length?

like image 651
user541686 Avatar asked Nov 13 '22 07:11

user541686


1 Answers

You can use SHParseDisplayName instead. The documentation does not mention any limitation of the length of pszName.

like image 69
Norbert Willhelm Avatar answered Nov 17 '22 01:11

Norbert Willhelm