ImageEn, unit iexFolderTree |
|
TIEFileListBox.ShowFolders
Declaration
property ShowFolders: Boolean;
Description
Enable to display folders with your files.
Note: Double-clicking of folders is not handled automatically.
Default: False
See Also:
ShowHiddenFiles// Show folders
IEFileListBox1.Items.BeginUpdate();
try
IEFileListBox1.Folder := 'C:\';
IEFileListBox1.ShowFolders := True;
finally
// Re-enable updating and refresh content
IEFileListBox1.Items.EndUpdate();
end;