I'm trying to open multiple files at once with the OpenFileDialog
, using FileNames
instead of FileName
. But I cannot see any examples anywhere on how to accomplish this, not even on MSDN. As far as I can tell - there's no documentation on it either. Has anybody done this before?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
You must set the
OpenFileDialog.Multiselect
Property value to true, and then access theOpenFileDialog.FileNames
property.Check this sample