How to select multiple folders [duplicate]
Possible Duplicate:
How to select multiple folder path usingt FolderBrowserDialog control in vb.net
I want to select many folders for performing some operations on them, like selecting many files with OpenFileDialog.
The problem is that I can开发者_如何转开发't select multiple folders in time with FolderBrowseDialog.
What is the solution?
That component doesn't allow multiple selections, sorry. You can, however, enable multiple selections in a TreeView to accomplish the task.
Select it one by one. Or custom control: File Explorer using Treeview controller Here is what you need.
Don't forget to mark answer as correct if that helped you.
OpenFolderDialog
, apparently does not support multiple item selection:
How to select multiple folder paths using FolderBrowserDialog control in VB.NET
精彩评论