views:

18

answers:

1

Java has JFileChooser.FILES_AND_DIRECTORIES to allow the user to select a file or a folder. .NET WinForms has OpenFileDialog for files and FolderBrowserDialog for folders. Does .NET have any component that can allow for either?

+1  A: 

No .NET doesn't have such a component.

However you might try this:

Select file or folder from the same dialog

Jay Riggs
Perfect! Thanks much.
Dinah