Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 420 Bytes

File metadata and controls

12 lines (11 loc) · 420 Bytes

MultiFilesAndDirsOpenDialog

Delphi multi files and dirs open dialog, support fmx and vcl(modify by yourself) above Windows Vista, In case of WinXP, you can implement SelectDirectory()

Usage:

var
list := SelectDirsAndFiles(self.Handle, 'Select your folders and files', 'Upload');
for var s in list.Keys do
  showmessage('Path: ' + s + ', Is Folder: ' + list[s].ToString(TUseBoolStrs.True));
list.Free;