在上传另一个文件(相同名称)之前,我需要检查Nextcloud中是否有文件。我还没有找到使用curl(我用来上传新文件的命令)执行此操作的任何方法。因此,在the client API of Nextcloud中进行搜索,我找到了webDAV搜索。
我尝试在上传之前使用它来检查文件是否存在。这是我已经实现的:
curl -u myUser:myPass 'https://nextcloud.customExample.com/remote.php/dav/' -X SEARCH -u myUser:myPass -H "content-Type: text/xml" --data '<?xml version="1.0" encoding="UTF-8"?>
<d:searchrequest xmlns:d="DAV:" xmlns:oc="http://owncloud.org/ns">
<d:basicsearch>
<d:select>
<d:prop>
<d:displayname/>
</d:prop>
</d:select>
<d:from>
<d:scope>
<d:href>/files/myFolder/myFile.apk</d:href>
<d:depth>infinity</d:depth>
</d:scope>
</d:from>
<d:where>
<d:like>
<d:prop>
<d:getcontenttype/>
</d:prop>
<d:literal>text/%</d:literal>
</d:like>
</d:where>
<d:orderby>
<d:prop>
<oc:size/>
</d:prop>
<d:ascending/>
</d:orderby>
</d:basicsearch>
</d:searchrequest>'
执行时出现此错误:
<?xml version="1.0" encoding="utf-8"?>
<d:error xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns">
<s:exception>Sabre\DAV\Exception\NotFound</s:exception>
<s:message>Principal with name myFolder not found</s:message>
</d:error>
如我所见,文件夹myFolder位于Nextcloud的根目录中。我不知道是否需要添加其他内容(如我添加的“文件”)。
该用户具有权限,并且正在使用curl命令与该同一用户上载文件。
答案 0 :(得分:0)
毕竟,我找到了一种更简单的方法来检查文件是否存在:
url='http://example.com/index.html'
if ( curl -o/dev/null -sfI "$url" ); then
echo "URL exists"
else
echo "URL does not exist"
fi
如果需要验证,可以在curl命令中添加--user
参数。
我找到了here。