本帖最后由 lpopbxjz 于 2024-8-10 11:04 编辑
唉.. 最近想写个安卓项目,没用按键 直接用的懒人,结果发现啥啥都没有,论坛上很多都找不到..这次项目用到的一些基础代码就发出来吧,希望懒人越来越好...
留下评论支持,谢谢,看着有评论也心情好哎,以便下次再次分享...
写入文件(文件路径,"写入的内容".."\r\n",false)
function 写入文件(path,content, isCle)
local iRet, sRet = pcall(function()
content = content or ""
local mode = ""
if isCle then
mode = "w"
else
mode = "a"
end
local f = io.open(path, mode)
if f~=nil then
local ret = f:write(content)
f:close()
end
return ret
end)
if iRet == true then
return sRet
else
print(sRet)
return nil
end
end
|