このページの翻訳:
- 日本語 (ja)
- English (en)
最近の更新
Tag Cloud
このページへのアクセス
今日: 9 / 昨日: 0
総計: 738
- Dokuwiki.fl8.jp(501)
- 13 CentOS6メール設定(26)
- FreeBSD カーネル再構築(24)
- 05 rsync(23)
最近の更新
このページへのアクセス
今日: 9 / 昨日: 0
総計: 738
# <user> nextcloudでのユーザー名
# <pass> <user>のパスワード
# <nextcloud root> nextcloudのルートフォルダー 例 https://abc.com/nextcloud
# <path to upload> アップロード先ファイルのパス
# <file path to send> アップロードしたいファイルが置いてあるパス
curl -X PUT -u <user>:<pass> https://<nextcloud root>/remote.php/dav/files/<user>/<path to upload> -T <file path to send>
これで、nc.hogehoge.comにhoge_userで、testフォルダへtest.txtをtest01.txtとしてアップロード
curl -X PUT -u 'hoge_user:hoge_pass' https://nc.hogehoge.com/remote.php/dav/files/hoge_user/test/test01.txt -T test.txt
# <user> nextcloudでのユーザー名
# <pass> <user>のパスワード
# <nextcloud root> nextcloudのルートフォルダー 例 https://abc.com/nextcloud
# <path of file to download> ダウンロードしたいファイルが置いてあるnextcloud上のパス
# <path to save> ダウンロードしたファイルの保存先
curl -X GET -u <user>:<pass> https://<nextcloud root>/remote.php/dav/files/<user>/<path of file to download> --output <path to save>
これで、nc.hogehoge.comにhoge_userで、testフォルダへtest.txtをtest01.txtとしてアップロード
curl -X GET -u 'hoge_user:hoge_pass' https://nc.hogehoge.com/remote.php/dav/files/hoge_user/test/test01.txt --output test.txt