![]() |
![]() ![]() ![]() |
dcFolderMonitor component.
|
type
|
TdcFolderMonitorFilter = (fmFileName, fmDirName, fmAttributes, fmSize, fmWrite, fmAccess, fmSecurity);
|
TdcFolderMonitorFilters = set of TdcFolderMonitorFilter;
|
|
property Filter: TdcFolderMonitorFilters;
|
The Filter property specifies the level of notification about changes in the files in the directory structure of the Folder.
|
|
There are possible filters:
|
Value | Meaning
|
fmFileName | notifies you when the file name(s) changed (renamed, deleted, moved or has been created the new file), when True;
|
fmDirName | notifies you when the directory name(s) changed (renamed, deleted, moved or has been created the new directory), when True;
|
fmAttributes | notifies when the file attributes in any file is changed, when True;
|
fmSize | notifies when the file size changed, when True;
|
fmWrite | notifies when any file has been modified (WriteTime changed);
|
fmAccess | notifies when any file has been accessed (ReadTime changed);
|
fmSecurity | notifies when the security attributes has changed (used in WinNT only!).
|
Folder property.
|