Ashet OS

enum: ashet.FileMode

Items

open_existing = 0

opens file when it exists on disk

open_always = 1

creates file when it does not exist, or opens the file without truncation.

create_new = 2

creates file when there is no file with that name

create_always = 3

creates file when it does not exist, or opens the file and truncates it to zero length