函数:push_file 上传文件
方法名称:上传文件
方法功能:从设备上传文件到中控
调用方法
ok,err = ts_enterprise_lib:push_file(local_file,remote_file);
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
local_file | string | 是 | 设备的文件路径 |
remote_file | string | 是 | 中控的文件路径, 可以是相对中控器文件夹的相对路径,也可以是绝对路径 |
返回值 | 类型 | 说明 |
---|---|---|
ok | boolean | 操作结果,成功返回 true,失败返回 false |
err | string | 当 ok 等于 true,无返回值;当 ok 等于 false,返回错误原因 |
函数用例
--企业版库为旗舰版及企业版专用库请勿在除旗舰版及企业版外的产品使用,此库已内置,无需下载
--如果提示没有 ts_enterprise_lib 库请重启旗舰版/企业版客户端服务再试
ts_enterprise_lib = require("ts_enterprise_lib")
assert(ts_enterprise_lib,"无法引入企业专用库")
require("TSLib")
dialog("开始测试",5)
--本地的文件名(手机上)
local local_file = userPath().."/res/ceshi.txt"
bool = writeFileString(local_file,"测试写入功能","a")
if bool then
toast("创建文件并写入数据成功",5)
--[[
上传文件到中控器
中控的文件名(相对于中控器的根路径即 TouchSpriteENT_Files 文件夹下)
Win 系统电脑默认路径为 C:\Users\用户名\Documents\TouchSpriteENT_Files\ 文件夹下
电脑相对路径
--]]
local remote_file = "123.txt"
--Win 系统电脑绝对路径
--local remote_file = "C:/Users/admin/Documents/TouchSpriteENT_Files/data/123.txt"
local ok,err = ts_enterprise_lib:push_file(local_file,remote_file)
if ok then
toast("文件上传成功",5)
nLog("文件上传成功")
else
toast("文件上传失败,失败原因:"..err,5)
nLog("文件上传失败,失败原因:"..err)
end
else
dialog("文件创建失败",5)
end
--测试速度结果:80 M 文件 11 - 18 秒
--此功能需要配合 1069 以上版本中控器方可使用