函数名称:写入到文件
函数功能:写入到文件
函数方法
io.write(str)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
str | string/number | 是 | 需要写入的内容 |
函数用例
file,msg = io.open("/mnt/sdcard/888.txt","r+")
if file then
file:write("1")
mSleep(2000)
dialog(file:read("*n"),5000)
file:close()
else
dialog("打开失败,失败原因:"..msg,5000)
end