函数:ftp.mkdir 创建文件夹
函数名称:创建文件夹
函数功能:在服务器指定目录下创建文件夹
函数方法
ret,msg = ftp.mkdir(filePath)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
filePath | string | 是 | 文件夹路径及文件夹名 |
返回值 | 类型 | 说明 |
---|---|---|
ret | number | 1 - 创建成功,0 - 创建失败 |
msg | string | 失败返回失败原因 |
函数用例
--脚本仅供参考不可直接使用
require("tsnet")
ftp.setTimeout(50)
local url ="1.1.1.1"
local username ="ceshi"
local password ="ceshi"
ftp.init(url,username,password)
ret,msg = ftp.mkdir("/test")
if ret == 1 then
dialog("创建成功")
else
dialog("创建失败".."\n".."失败原因:"..msg)
end
注意事项
不使用 ftp.setTimeout 函数默认超时时间为 10 秒。
使用 ts.so 函数出现问题可以使用此函数试下。
-iOS 仅支持个人版、旗舰版、小精灵、专业版及企业版。
- Android 支持标准版、旗舰版、小精灵及企业版,标准版需要登录账号、购买 VIP 并且在调用过程中账号需要保持登录状态否则会导致调用失效。