Fs.OpenOpt¶
OpenOpt :: struct {
read: bool;
write: bool;
append: bool;
create: bool;
}
Members¶
read - Open file for reading.
write - Open file for writing and truncate its content.
append - Open file for appending (keeps current content).
create - Create file if it does not exist.
Declared in: fs.bl