Fixes and Additions to WebDAV querying
Bug Fixed: Calling completion handler for upload tasks
Added including (file object properties) argument to WebDAV provider this is the sample code for fetching ETag
and size property of file from WebDAV:
provider.attributesOfItem(path: "/path/to/file", including: [.fileSizeKey, .entryTagKey], completionHandler: { attributes, error in
print(attributes.size)
print(attributes.entryTag)
}
This is also true for contentsOfDirectory()
method