douyinlai2169 2015-10-05 15:20
浏览 397
已采纳

通过简历支持将大文件上传到WebDAV

I want to upload large files to ownCloud with WebDAV API.

I use this code to do this:

<?php
$url = "http://user:password@owncloud.local/remote.php/webdav/test.mp4";
$localfile = "test.mp4";
$fp = fopen ($localfile, "r");
$ch = curl_init();
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_PUT, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_INFILE, $fp);
curl_setopt($ch, CURLOPT_INFILESIZE, filesize($localfile));
$http_result = curl_exec($ch);
$error = curl_error($ch);
$http_code = curl_getinfo($ch ,CURLINFO_HTTP_CODE);
curl_close($ch);
fclose($fp);
print $http_code;
print "<br /><br />$http_result";
if ($error) {
   print "<br /><br />$error";
}
?>

But when connection lost, this script cannot resume uploading file.

Is it possible to resume file upload with WebDAV?

Thanks

  • 写回答

1条回答 默认 最新

  • duanjitong7226 2015-10-06 06:36
    关注

    Use the CURLOPT_RESUME_FROM_LARGE option.

    Either set it to a position to start the resume from. Or use the -1 to make the curl automatically resume at the end of the partially uploaded file.

    Note that this affects the remote side only. You also need to seek the local file read pointer to the same position (using the fseek). So, if you want to resume at the end of the partially uploaded file, you need to query its size first, to know where to seek the local file read pointer to.
    For that see Remote file size without downloading file.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 cplex运行后参数报错是为什么
  • ¥15 之前不小心删了pycharm的文件,后面重新安装之后软件打不开了
  • ¥15 vue3获取动态宽度,刷新后动态宽度值为0
  • ¥15 升腾威讯云桌面V2.0.0摄像头问题
  • ¥15 关于Python的会计设计
  • ¥15 聚类分析 设计k-均值算法分类器,对一组二维模式向量进行分类。
  • ¥15 stm32c8t6工程,使用hal库
  • ¥15 找能接spark如图片的,可议价
  • ¥15 关于#单片机#的问题,请各位专家解答!
  • ¥15 博通raid 的写入速度很高也很低