函数:readFileString 读文件返回字符串
函数名称:读文件返回字符串
函数功能:读文件操作,读取文件内容,返回全部内容的 string
函数方法
txt = readFileString(file)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
file | string | 是 | 文件路径 |
返回值 | 类型 | 说明 |
---|---|---|
txt | string/boolean | 文件存在返回文件内容,文件不存在返回 false |
函数用例
require "TSLib"--使用本函数库必须在脚本开头引用并将文件放到设备 lua 目录下
local file = userPath().."/res/cs.txt"
txt = readFileString(file)--读取文件内容,返回全部内容的 string
if txt then
dialog("文件内容:"..txt)
else
dialog("文件不存在")
end