ModeFlags

    FileAccess.swift:24
    enum ModeFlags

    Cases

    • case read

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

    • case write

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

    • case readWrite

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

    • case writeRead

      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.

    Other members in extension

    View members

    Hide members

    This section is hidden by default because it contains too many (58) members.

    Types

    Type members

    Instance members

    Citizens in SwiftGodot

    Conformances

    Type members

    Instance members

    Type features

    Instance features