Skip to content

EntropyEngine::Core::IO::WatchOptions

Options for configuring file system watches.

#include <FileWatch.h>

Name
boolrecursive
Watch subdirectories recursively.
std::vector< std::string >includePatterns
Include only files matching these patterns (*.cpp, *.h).
boolfollowSymlinks
Follow symbolic links when watching.
std::vector< std::string >excludePatterns
Exclude files matching these patterns (.git/*, *.tmp).
bool recursive = true;

Watch subdirectories recursively.

std::vector< std::string > includePatterns;

Include only files matching these patterns (*.cpp, *.h).

bool followSymlinks = false;

Follow symbolic links when watching.

std::vector< std::string > excludePatterns;

Exclude files matching these patterns (.git/*, *.tmp).


Updated on 2026-01-26 at 17:14:35 -0500