Gets or sets a boolean value indicating whether to retain the
FileList list while executing the multi-file operation and after it completes,
making it possible to access information of all processed files and directories.
public bool RetainFileList { get; set; }
Public Property RetainFileList As Boolean
public:
property bool RetainFileList {
bool get();
void set(bool RetainFileList);
}
Value
true
to retain the
FileList list; otherwise,
false
.
Remarks
By default, this property is
false
to minimize memory footprint while executing the operation. By setting this property to
true
,
the operation will need some extra memory. When processing many files (i.e. 100k files), you may want to leave this property as default (
false
) to reduce the memory needed to store the list.