I work with WebDAV Yandex Disk API. How to find out the amount of free disk space? This is proposed to be done in the API documentation, but only the depth and url parameters can be passed to the propfind method (the one in the module).

  • Which module? - dionys

1 answer 1

I did not find such an opportunity. Alternatively, you can use libcurl to form queries manually.

  • It seems to me that we should not manipulate HTTP :: DAV directly, but in parts. For example, judging by the source code of the object HTTP :: DAV :: Resource , he is quite able to construct a custom query in the propfind method. - PinkTux