ImageEn, unit iexFolderTree |
|
TIEFileListBox.ShowHiddenFiles
Declaration
property ShowHiddenFiles: Boolean;
Description
Enable to display system and hidden files.
Default: false
See Also
◼ShowFolders// 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;