大家好,我是公众号3分钟学堂的郭立员,今天直接分享一个ftp上传、下载、删除文件的源码,主要用的是curl命令。
按键代码Import "shanhai.lua" '-------------------定义参数-------------------- Dim name="ftp2935874" 'ftp账号 Dim password="**********" 'ftp密码 Dim ftpPath="ftp://host166.gotoftp4.cn/" 'ftp地址 Dim filepath="/sdcard/pictures/0.txt" '本地文件路径 Dim downloadpath=ftpPath&"wwwroot/0.txt" '文件服务器地址 Dim pathname="wwwroot/0.txt" '文件名称(包括文件夹路径) '---------------------------------------------- //上传文件 shanhai.execute ("curl -u " & name & ":" & password & " -T " & filepath & " " & ftpPath & "wwwroot/") //下载文件 shanhai.execute ("curl " & downloadpath & " -u " & name & ":" & password & " -o " & filepath) //删除文件 shanhai.execute ("curl -u " & name & ":" & password & " " & ftpPath & " -X 'DELE " & pathname & "'")
CURL参考资料
-o out ?将指定curl返回保存为out文件,内容从html/jpg到各种MIME类型文件
-O ?按服务器上的名称保存下载的文件
-r/--range ?from-to 下载指定range内的数据
-C 在保存文件时进行续传
-A/--user-agent ?
-x ?ip:port 指定使用的http代理,如curl -x 192.168.1.1:8080 www.apple.com
-D head.txt ?将服务器的返回的header保存为文件,头部的cookie也可被保存 ? curl -D header.txt www.apple.com
-c
-b/--cookie ?
-e url ?设置引用头的值
-T localfile ?向服务器PUT文件 如curl -T 1.mp3 ?www.apple.com/upload.php
-d
-F
如果希望从本地文件中获取表单数据,则在文件名前加@ 如 curl -d @data.xml http://www.apple.com
若希望从标准输入获取则用curl -d - http://www.apple.com
-E cert.pem ?指定本地证书
-H
-I ?构造一个HEAD请求
-X/--request method 用户定义的HTTP请求方法名如 curl -X GET www.baidu.com
--compressed 采用压缩方式接收返回数据
--connect-timeout 设置超时时间
-v 详细输出,包含请求和响应的首部