Constant file_append

← Back to Module fileio



Module fileio → file_append

Description

File mode: Append. Set the position indicator to the end of the file before each output operation

const file_append = 0x01


Usage Example

import fileio
 
f = file("data.txt", file_append)
f.write("Hello")
f.close()