Keyword | Definition |
---|---|
append | method used to write to a file where new data is added onto the end of an existing file |
create | method used to write to a file where a new file is created if if it doesn't already exist |
mode | the method used to open a file for writing (e.g. append, read only or create) |
write | output data to a file |