Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 498
1Programmer Avatar asked Nov 16 '25 05:11

1Programmer


2 Answers

That component doesn't allow multiple selections, sorry. You can, however, enable multiple selections in a TreeView to accomplish the task.

like image 172
David Avatar answered Nov 18 '25 18:11

David


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.

like image 26
Sasha Reminnyi Avatar answered Nov 18 '25 18:11

Sasha Reminnyi