File IO

Jul 1, 2023  │  m. Jul 2, 2023 by Gleb Buzin
-- Create new file for reading and writing
file = io.open("test.lua", "w+")

-- Write text to the file
file:write("Random string of text\n")
file:write("Some more text\n")

-- Move back to the beginning of the file
file:seek("set", 0)

-- Read from the file
print(file:read("*a"))

-- Close the file
file:close()

-- Open file for appending and reading
file = io.open("test.lua", "a+")
file:write("Even more text\n")
file:seek("set", 0)
print(file:read("*a"))
file:close()
Random string of text
Some more text

Random string of text
Some more text
Even more text

There are several different ways to work with files:

r: Read only (default)
w: Overwrite or create a new file
a: Append or create a new file
r+: Read & write existing file
w+: Overwrite read or create a file
a+: Append read or create file


Next: Walk a Directory