Click here to Skip to main content
15,895,815 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to select multiple folders for a particular operation

Is there any way to select multiple folders using C#.

If so how to do this.
Posted
Updated 7-Apr-14 4:15am
v2
Comments
ZurdoDev 7-Apr-14 10:15am    
Select for what? Where are you stuck? What are you doing?
Suk@nta 7-Apr-14 10:23am    
plz explain more detail, unable to get your problem

If you are using File dialog, try
openFileDialog.Multiselect = true;
 
Share this answer
 
v2
The standard FolderBrowseDialog doesn't support multiselect. But you can brew your own - see this[^] SO article.

/ravi
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900