Enum VfsMode
Specifies the mode in which a VFSFile is opened.
Namespace: TileDB.CSharp
Assembly: TileDB.CSharp.dll
Syntax
public enum VfsMode : uint
Fields
| Name | Description |
|---|---|
| Append | The file is opened for writing. If it exists, the write will start from its end. |
| Read | The file is opened for reading. An exception will be thrown if it does not exist. |
| Write | The file is opened for writing. If it exists, it will be overwritten. |