SpaceObServer.SearchFilter.Properties.MinSize

<< Click to Display Table of Contents >>

Navigation:  OLE Automation > SearchFilter > Properties >

SpaceObServer.SearchFilter.Properties.MinSize

Description

Use this property to include only files with a minimum size.

 
Syntax

property MinSize(SizeType : <Shortint>): <Integer>;

 
Example

PowerShell:

$SOS.SizeUnit = "KB"
$SOS.Filter.MinSize("Size") = 20

VBS:

SOS.SizeUnit = "KB"
SOS.Filter.MinSize("Size") = 20

Only files with a real size bigger or equal 20 Kilo Byte will be included in the file system tree and all exports (Except of the XML export).

 
Remarks

Permitted SizeType values are "Size" and "Allocated". Find a list of all info types at OLE Information Type
The size unit of the filter is defined by the property SizeUnit.
This filter can be combined with the MaxSize filter to include only files with sizes in a certain interval.