WinForms Java Equivalent JFileChooser.FILES_AND_DIRECTORIES

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

+4
source share
1 answer

.NET does not have such a component.

However, you can try the following:

Select a file or folder from the same dialog box.

+1
source

Source: https://habr.com/ru/post/1301876/


All Articles