使用curl在命令行下上传文件到webdav(含删除,新建目录,重命名等其他操作)
上传
curl --user 'user:password' --anyauth --progress-bar -sw '%{http_code}' 'https://dav.ktsee.com/myfile/' -T '/home/a.jpg'
重命名curl -X MOVE --user 'user:password' --anyauth -sw '%{http_code}' 'https://dav.ktsee.com/myfile/a.jpg' --header 'Destination:https://dav.ktsee.com/myfile/new.jpg'
删除curl -X DELETE --user 'user:password' --anyauth -sw '%{http_code}' 'https://dav.ktsee.com/myfile/a.jpg'
新建目录curl -X MKCOL --user 'user:password' --anyauth -sw '%{http_code}' 'https://dav.ktsee.com/myfile/new_folder'
评论