FileProvider
FileProvider copied to clipboard
FileManager replacement for Local, iCloud and Remote (WebDAV/FTP/Dropbox/OneDrive) files -- Swift
While the app is open, the file on the server stays with 0KB. After you close it, the file becomes its actual size.
Could you add documentId parameter for webdav files?
https://github.com/amosavian/FileProvider/blob/master/Sources/CloudFileProvider.swift#L24 Should be isCoordinating, I believe. It's missing the first 'd'. I'm trying to get a listing of files from iCloud, but it's currently failing. Figuring out now, but in...
When the file is big the file download through ftp is not same to the original one checked by md5. Is there anything wrong with my code?Thanks ![screen shot 2018-08-28...
I got this error when I try to list an empty directory: RESPONSE : Error Domain=NSURLErrorDomain Code=-1001 "(null)"
Hi, I'm trying to upload a single picture via FTP with the following script: ``` let credential = URLCredential(user: "xxxxxxxx", password: "xxxxxxxx", persistence: .none) let cache = URLCache() let ftpProvider...
I have this little code to upload the media and test it with an incorrect URL rather than the exact one: `https://webdav.pcloud.com`. ``` webdav?.create(folder: folder, at: "/", completionHandler: { (error)...
Hi, I'm trying to list down the contents of directory from a ftp server. iOS: 11.2 XCode: 9.2, Swift 4 Here is the crash error : *** -[FilesProvider.FileProviderStreamTask respondsToSelector:]: message...
This looks like a great pod but, is there a way to work with UIDocument subclasses? Say i want to build a custom document class to host my apps' model...