Click or drag to resize

FileModeFlags Enumeration

[Missing <summary> documentation for "T:Godot.File.ModeFlags"]

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public enum ModeFlags
Members
  Member nameValueDescription
Read1

Opens the file for read operations. The cursor is positioned at the beginning of the file.

Write2

Opens the file for write operations. The file is created if it does not exist, and truncated if it does.

ReadWrite3

Opens the file for read and write operations. Does not truncate the file. The cursor is positioned at the beginning of the file.

WriteRead7

Opens the file for read and write operations. The file is created if it does not exist, and truncated if it does. The cursor is positioned at the beginning of the file.

See Also