![]() |
ezEngine
Release 25.03
|
Selection specifying file lock behavior on open. More...
#include <FileEnums.h>
Public Types | |
enum | Enum { Default, Exclusive, SharedReads } |
Selection specifying file lock behavior on open.
Enumerator | |
---|---|
Default | Results in 'Exclusive' when requesting write access and 'SharedReads' when requesting read access. See ezFileOpenMode::Enum. |
Exclusive | No other process is allowed to access the file for reading or writing, while it is open. |
SharedReads | Other processes may read the file concurrently. |