Table of Contents

Enum FileMode

Namespace
Sdl3Sharp.IO
Assembly
Sdl3Sharp.dll

Defines constants for controlling how to open a file

public enum FileMode

Fields

Append = 3

Appends to the existing file or creates a new one

Create = 1

Creates a new file or overwrites an existing one

CreateNew = 2

Creates a new file. Fails if the file already exists.

Open = 0

Tries to open an existing file. Fails if the file doesn't exist.