property ExFileView.ExcludeFolderFilter as String
Retrieves or sets a value that indicates the folders being excluded.

TypeDescription
String A string expression that may contains wild cards like * or ?
Use the ExcludeFolderFilter property to exclude folders that match a pattern or multiple patterns from the current list. The ExcludeFolderFilter property has ni effect if it is empty. When the ExcludeFolderFilter is set, the control automatically refreshes the current list, and applies the FileType attributes. Use the ExcludeFilter property to exclude files that match a pattern or multiple patterns from the current list. Use the IncludeFilter property to include only the files that match a pattern. Use the exHideFileExtensionsForKnownFileTypes option to show the file extensions in case your Windows Explorer,  the "Hide File Extensions For Known File Types" is checked. Use the Name property to specify the name of the file or the folder. Use the Folder property to specify whether the File object holds a file or a folder.

The following VB sample excludes the "Temp" folders:

With ExFileView1
    .ExcludeFolderFilter = "*temp*"
End With

The following C++ sample excludes the "Temp" folders:

m_fileview.SetExcludeFolderFilter( "temp*" );

The following VB.NET sample excludes the "Temp" folders:

AxExFileView1.ExcludeFolderFilter = "*temp*"

The following C# sample excludes the "Temp" folders:

axExFileView1.ExcludeFolderFilter = "*temp*";

The following VFP sample excludes the "Temp" folders:

With thisform.ExFileView1
    .ExcludeFolderFilter = "*temp*"
EndWith