Navigation
API > API/Developer > API/Developer/DirectoryWatcher > API/Developer/DirectoryWatcher/IDirectoryWatcher
Options for a single watch (can be combined)
| Name | WatchOptions |
| Type | enum |
| Header File | /Engine/Source/Developer/DirectoryWatcher/Public/IDirectoryWatcher.h |
| Include Path | #include "IDirectoryWatcher.h" |
Syntax
enum WatchOptions
{
IncludeDirectoryChanges = (1<<0),
IgnoreChangesInSubtree = (1<<1),
}
Values
| Name | Remarks |
|---|---|
| IncludeDirectoryChanges | Whether to include notifications for changes to actual directories (such as directories being created or removed). |
| IgnoreChangesInSubtree | Whether changes in subdirectories need to be reported. |