Interface FileSystemEvents
access this type via: io.FileSystemEvents (provides, requires or uses)
Register to receive events for file system changes.
Functions
FileSystemEvents()
bool listenFile(char path[])
void unlistenFile(char path[])
bool listenDirectory(char path[])
void unlistenDirectory(char path[])
FileSystemEvents()
Construct a new file system event listener.
bool listenFile(char path[])
Listen for changes to a given file.
void unlistenFile(char path[])
Stop listening for changes to a given file.
bool listenDirectory(char path[])
Listen for changes to a given directory (monitoring its contents).
void unlistenDirectory(char path[])
Stop listening for changes to a given directory.