Posted 14 September 2012 - 12:16 AM
currently i have a program that will read a builders mod text file to a 3d table but any time i log out i have to re-read that entire file into the table. and being the size it is … it will probably take a day rl time
so that said , is there an easy way to write a table to file so all i have to do to load it back up is
and for those wondering , its a 6.6MB text file containing 120 layers , each layer is a set of 257 lines , each 113 used charicters long ( space delimited )
so yeah , huge file faster read time would be much appricated
so that said , is there an easy way to write a table to file so all i have to do to load it back up is
file = io.open("file","r")
table = file:read("*all")
file:close()
and for those wondering , its a 6.6MB text file containing 120 layers , each layer is a set of 257 lines , each 113 used charicters long ( space delimited )
so yeah , huge file faster read time would be much appricated