HowTo: Checksum calculation via WebDAV

From Public PIC Wiki
Revision as of 10:13, 20 December 2016 by Mcaubet (talk | contribs) (Created page with "=== Get checksum from a single file === curl -u <user>:<passwd> -X PROPFIND -H Depth:'''0''' https://<dcache_webdav_endpoint>/<path>/'''<file>''' --data '<?xml version="1.0"...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Get checksum from a single file

curl -u <user>:<passwd> -X PROPFIND -H Depth:0 https://<dcache_webdav_endpoint>/<path>/<file> --data '<?xml version="1.0" encoding="utf-8"?>
        <D:propfind xmlns:D="DAV:">
            <D:prop xmlns:R="http://www.dcache.org/2013/webdav"
                    xmlns:S="http://srm.lbl.gov/StorageResourceManager">
                <R:Checksums/>
            </D:prop>
        </D:propfind>'

Get checksum from all files in a directory

curl -u <user>:<passwd> -X PROPFIND -H Depth:1 https://<dcache_webdav_endpoint>/<path>/ --data '<?xml version="1.0" encoding="utf-8"?>
        <D:propfind xmlns:D="DAV:">
            <D:prop xmlns:R="http://www.dcache.org/2013/webdav"
                    xmlns:S="http://srm.lbl.gov/StorageResourceManager">
                <R:Checksums/>
            </D:prop>
        </D:propfind>'