Reputation: 419
When I open a dialog box with SHBrowseForFolder, I want it to browse for hidden folders too (hidden folders appear in the dialog box). How can I do this?
Upvotes: 1
Views: 580
Reputation: 6846
SHBrowseForFolder
doesn't show hidden folders. You will need to use a FolderView
control or create your own browser dialog using FindFirst/FindNext
.
Upvotes: 1