Posted 04 January 2014 - 12:15 PM
Is it possible to open/use one file multiple times at the same time? (I'm sorry if this question has been asked before, couldn't find anything after a quick search.)
Example:
Thanks.
Example:
local r = fs.open("file","r")
local w = fs.open("file","w")
print(r.readAll())
w.write("this is text")
r.close()
w.close()
Thanks.
Edited on 04 January 2014 - 11:15 AM