We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
webdavProvider.contentsOfDirectory(path: "/", completionHandler: { contents, error in for file in contents { print("Name: \(file.name)") print("Size: \(file.size)") print("is Folder: \(file.isDirectory)") print("Creation Date: \(file.creationDate)") print("Modification Date: \(file.modifiedDate)") print("Path: \(file.path)") print("Childrens Count: \(file.childrensCount)") } })
Result
Name: Time Machine Size: -1 is Folder: true Creation Date: nil Modification Date: Optional(2024-07-19 22:36:58 +0000) Path: /Time Machine Childrens Count: nil
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Result
The text was updated successfully, but these errors were encountered: