libnick 2025.9.1
A cross-platform base for native Nickvision applications.
Loading...
Searching...
No Matches
watcherflags.h
Go to the documentation of this file.
1
22
23#ifndef WATCHERFLAGS_H
24#define WATCHERFLAGS_H
25
26#include "helpers/codehelpers.h"
27
29{
33 enum class WatcherFlags
34 {
38 Size = 8,
39 LastWrite = 16,
41 };
42
43 DEFINE_ENUM_FLAGS(WatcherFlags)
44}
45
46#endif
Definition applicationuserdirectory.h:27
WatcherFlags
Flags to describe properties of a file system object that can change.
Definition watcherflags.h:34
@ DirectoryName
The name of a directory in the file system object has changed.
Definition watcherflags.h:36
@ LastWrite
The last write time of an item in the file system object has changed.
Definition watcherflags.h:39
@ FileName
The name of a file in the file system object has changed.
Definition watcherflags.h:35
@ Attributes
The attributes of an item in the file system object have changed.
Definition watcherflags.h:37
@ LastAccess
The last access time of an item in the file system object has changed.
Definition watcherflags.h:40
@ Size
The size of an item in the file system object has changed.
Definition watcherflags.h:38