Uploading files to an ownCloud server programmatically

前端 未结 6 558
鱼传尺愫
鱼传尺愫 2020-12-09 21:49

I am trying to set a web application where many clients can connect through a Node.js http server and then upload/download files that will then be shown in different display

6条回答
  •  悲哀的现实
    2020-12-09 22:21

    Using curl for windows and owncloud 8. The only way I found to transfer a file was by using this command

    curl -u user:password --upload-file "c:\path to file\srcfile" "https://ocserver/owncloud/remote.php/webdav/tgtfile"
    

    Hope this helps

提交回复
热议问题