在Lua中進行文件操作可以使用io庫提供的函數。下面是一些常用的文件操作函數:
local file = io.open("filename.txt", "r") -- 以只讀模式打開文件
local content = file:read("*a") -- 讀取整個文件內容
file:write("Hello, world!") -- 寫入內容到文件
file:close() -- 關閉文件
local file_exists = io.open("filename.txt", "r")
if file_exists then
print("File exists")
file_exists:close()
else
print("File does not exist")
end
以上是一些常用的文件操作函數,可以根據需要進行調用。