SHBrowseForFolder :
Displays a dialog box that enables the user to select a shell folder.WINSHELLAPI LPITEMIDLIST WINAPI SHBrowseForFolder(    LPBROWSEINFO lpbi
   );
 ParameterslpbiPointer to a BROWSEINFO structure that contains information used to display the dialog box. Return ValuesReturns a pointer to an item identifier list that specifies the location of the selected folder relative to the root of the name space. If the user chooses the Cancel button in the dialog box, the return value is NULL.
The calling application is responsible for freeing the returned item identifier list using the shell's task allocator.以上帮助Copy自Delphi5自带的Api帮助文件,怎么会没有呢?Displays a dialog box that enables the user to select a shell folder.
从字面上看,功能是显示一个对话框让用户选择一个文件夹。另:在DELPHI代码编辑框中按住Ctrl键同时用鼠标单击API函数名即可打开相应的头文件
:)