Directory select

  • Thread starter Thread starter kumar00245
  • Start date Start date
K

kumar00245

I need to develop a functionality in windows firm to select multiple
files from a directory and display them in a datagrid in C#.

Can anyone please tell me how to select multiple files from a
directory using any C# windows control?

Is there any way to achieve it?

Thanks.
 
I need to develop a functionality in windows firm to select multiple
files from a directory and display them in a datagrid in C#.

Can anyone please tell me how to select multiple files from a
directory using any C# windows control?
An instance of OpenFileDialog with the MultiSelect property set to "true"
should do it.
 
Back
Top