方法介绍
读取文件转换成base64编码
方法名称:
类_文件.读文件转base64
语法:
类_文件.读文件转base64(pathl)
参数说明:
path:文件路径
返回值:
返回文本内容base64编码
脚本例子:
require "懒人综合插件"
local path="/mnt/sdcard/test.txt"
local ret=类_文件.写入文件(path,"123\r\n456\r\n789\r\nabc",true)
while true do
if 类_文件.文件是否存在(path) then
local ret=类_文件.读文件转base64(path)
print(ret)
print("----------------------------------")
else
print("文件不存在")
end
sleep(2000)
end