ImageEn, unit iexFolderTree

TIEFileListBox.ShowHiddenFiles

TIEFileListBox.ShowHiddenFiles


Declaration

property ShowHiddenFiles: Boolean;


Description

Enable to display system and hidden files.

Default: false


See Also

 ShowFolders


Example

// Show hidden files
IEFileListBox1.Items.BeginUpdate();
try
  IEFileListBox1.Folder := 'C:\';
  IEFileListBox1.ShowFolders := True;
  IEFileListBox1.ShowHiddenFiles := True;
finally
  // Re-enable updating and refresh content
  IEFileListBox1.Items.EndUpdate();
end;