FileProvider
FileProvider copied to clipboard
FileManager replacement for Local, iCloud and Remote (WebDAV/FTP/Dropbox/OneDrive) files -- Swift
Hey, i have one question and i'm not sure how to solve my problem. I have a list of files in local storage, which i want to copy to the...
In iOS 11 / Xcode 9.0, Apple introduced a new framework with previously existing classes as `FileProvider` which may cause name conflict. To address this issue, since version 0.18.0 onward,...
Everything works perfect for smaller files, I tested it with bigger batch files etc, but it's not working properly for a big file. I'm using copy method to download the...
'SessionDelegate' has different definitions in different modules; first difference is definition in module 'FilesProvider.Swift' found 3 referenced protocols
```Swift func creatingFile(_ name:String, _ mime_type:String = "txt", completion: @escaping () -> Void) { guard let documentsProvider = WebDAVFileProvider(baseURL: URL(string: server.host)!, credential: credential) else { return } let filePath =...
```Swift 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:...
This is a good library and help me a lot. When I use this library in my project I meet a thread safe issue. If the library is used in...