Lua读写文件代码示例
读写文件的模式:
r-读取模式w-写入模式(覆盖现有内容) a-附加模式(附加在现有内容之后) b-二进制模式 r+-读取更新模式(现有数据保留) w+-写入更新模式(现有数据擦除) a+-附加更新模式(现有数据保留,只在文件末尾附加)
do
--readdatafromfile
functionreadFile()
localfileHandle=assert(io.open("test.txt","r"),"notthefile");
iffileHandlethen
localoutData=fileHandle:read("*all");
print(outData);
else
print("false");
end
fileHandle:close(errorInfo);
end
--writedatatothefile
functionwriteFile(dataBuffer)
localwriteHandle=assert(io.open("write.txt","a+"),"notthefile");
ifwriteHandlethen
writeHandle:write(dataBuffer);
print("true");
else
print("false");
end
writeHandle:close();
end
localinputData=0;
repeat
inputData=io.read();--writethedatafromio
writeFile(inputData);
untilinputData=='#'
end热门推荐
10 八一幼儿祝福语大全简短
11 公司乔迁食堂祝福语简短
12 婚礼结束聚餐祝福语简短
13 儿媳买车妈妈祝福语简短
14 毕业送礼老师祝福语简短
15 同事辞职正常祝福语简短
16 恭贺新婚文案祝福语简短
17 金店立秋祝福语简短英文
18 婆婆高寿祝福语大全简短