函数:ts.ftp.mkdir 创建文件夹
函数名称:创建文件夹
函数功能:在服务器指定目录下创建文件夹
函数方法
status = ts.ftp.mkdir(filePath);
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
filePath | string | 是 | 文件夹路径及文件夹名 |
返回值 | 类型 | 说明 |
---|---|---|
status | boolean | true - 创建成功,false - 创建失败 |
函数用例
--脚本仅供参考不可直接使用
local ts = require("ts")--使用官方库前一定要在开头插入这一句
--此处应填入真实的地址及账号密码
status = ts.ftp.connect("111.111.11.111","username","password")
--FTP 操作第一步,连接 FTP 服务器,连接成功后才可进行 FTP 相关操作
if status then
dialog("连接成功", 0)
else
dialog("连接失败", 0)
end
--在 FTP 上的 firstFile 文件夹内创建一个 childFile 文件夹,如果没有 firstFile 文件夹则先创建 firstFile 文件夹
mkStatus = ts.ftp.mkdir("firstFile/childFile")
--操作完成后,断开 FTP 服务器连接
ts.ftp.close()