函数:ts.ftp.list 获取文件列表文件
函数名称:获取文件列表文件
函数功能:获取服务器指定目录下的文件列表
函数方法
file = ts.ftp.list(filepath)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
filepath | string | 是 | 需要获取的文件夹路径 |
返回值 | 类型 | 说明 |
---|---|---|
file | table | 文件目录下的所有文件列表 |
函数用例
--脚本仅供参考不可直接使用
local ts = require("ts")--使用扩展库前必须插入这一句
local json = ts.json--使用 JSON 模块前必须插入这一句
status = ts.ftp.connect("111.111.11.111","username","password")
--FTP 操作第一步,连 接 FTP 服务器,连接成功后才可进行 FTP 相关操作
if status then
dialog("连接成功", 0)
else
dialog("连接失败", 0)
end
file = ts.ftp.list("/firstfile/")--获取目录下的文件夹
if file then
--把 table 转换成 json 字符串
local jsonstring = json.encode(file);
dialog(jsonstring,0)
end
ts.ftp.close() --操作完成后,断开 FTP 服务器连接