/
Closing File Connections
Closing File Connections
io.close() closes the file! It’s often used with the Colon Operator shorthand to pass the file as the 1st argument.
local File = io.open("myFile.txt")
File:close()
Files are automatically closed by Lua garbage collection to manage memory, but that takes an unpredictable amount of time to happen. It is always best to call close() explicitly.
, multiple selections available,
Related content
Opening Files
Opening Files
More like this
Reading Files
Reading Files
More like this
Local File Operations
Local File Operations
More like this
Writing to Files
Writing to Files
More like this
I thought popen does not give us the exit code of the process it ran
I thought popen does not give us the exit code of the process it ran
More like this
How the FIL library works
How the FIL library works
More like this