LuaFileSystem のドキュメントを見てきましたが、一時ファイルを作成して書き込む方法がよくわかりませんでした。また、作成した一時ファイルがどこにあるのか正確にはわかりません.. /tmp?
私の関数は次のようになります。
do
function upload_file(web)
f = -- creates a temporary file
f:write(file.contents) -- writes the content of the file uploaded in the temp file
f:seek("set", 0) -- we go back at the beginning
s = f:read("*a") -- read it out
print (s) -- print it out
f:close() -- close it
end
end