繁体   English   中英

使用Swift将文件从iOS应用上传到Dropbox

[英]upload files to Dropbox from iOS app with Swift

我已经完成了本教程( https://blogs.dropbox.com/developers/2014/09/swift-apps-with-dropbox/ ),并成功将我的iOS应用程序与Dropbox关联了。 但是,我想将文件从我的应用程序上传到Dropbox。 那里的所有教程都只有Objective C中的代码,包括Dropbox中的主要教程( https://www.dropbox.com/developers/core/start/ios )。 有谁知道如何用Swift做到这一点?

谢谢!

有用。

let textContent = "Hello Swift Upload"

let textData:NSData? = textContent.dataUsingEncoding(NSUTF8StringEncoding)

var client:DropboxClient? = Dropbox.authorizedClient

if let cli = client {
    cli.files.upload(path: "/Swift-Upload.txt", mode: Files.WriteMode.Add, autorename: false, clientModified: nil, mute: false, body: textData!)
}

iOS 10.12.3 swift 3.0 SwiftyDropbox 4.1.1一年以后,答案会稍微完整一些。

 func files_saver(sourcePath: String) {
    let textContent = "Blah Blah Blah"
    let textData:NSData? = textContent.data(using: String.Encoding.utf8) as NSData?

    let client = DropboxClientsManager.authorizedClient!
    client.files.upload(path: sourcePath, input: textData as! Data).response { response, error in
        if let metadata = response {
            print("Uploaded file name: \(metadata.name)")
            print("Uploaded file revision: \(metadata.rev)")

            // Get file (or folder) metadata
        }
        if let error = error {
            switch error as! CallError<SwiftyDropbox.Files.UploadError> {
            case .routeError(let boxed, let requestId):
                switch boxed.unboxed {
                case .path(let failedPath):
                        //print("Failed update 2 path: \(failedPath)")
                        NotificationCenter.default.post(name: Notification.Name("dbFileCreationError"), object: nil, userInfo: nil)
                        break

                    default:
                        //print("Unknown \(error)")
                        break
                    }
            case .internalServerError(let code, let message, let requestId):
                //print("InternalServerError[\(requestId)]: \(code): \(message)")
                NotificationCenter.default.post(name: Notification.Name("dbInternalServerError"), object: nil, userInfo: nil)
                break
            case .badInputError(let message, let requestId):
                //print("BadInputError[\(requestId)]: \(message)")
                NotificationCenter.default.post(name: Notification.Name("dbBadInputError"), object: nil, userInfo: nil)
                break
            case .authError(let authError, let requestId):
                //print("AuthError[\(requestId)]: \(authError)")
                NotificationCenter.default.post(name: Notification.Name("dbAuthError"), object: nil, userInfo: nil)
                break
            case .rateLimitError(let rateLimitError, let requestId):
                //print("RateLimitError[\(requestId)]: \(rateLimitError)")
                NotificationCenter.default.post(name: Notification.Name("dbRateLimitError"), object: nil, userInfo: nil)
                break
            case .httpError(let code, let message, let requestId):
                //print("HTTPError[\(requestId)]: \(code): \(message)")
                NotificationCenter.default.post(name: Notification.Name("dbHTTPError"), object: nil, userInfo: nil)
                break
            default:
                break
                }
        }
    }
}

我能够使用此(要点)代码(Swift 2.2)上传大文件(> 800MB)->

https://gist.github.com/cnharris10/3d744ca13abd13d4d5bd3a363be16dff

请参阅下面的示例屏幕快照,其中另一个150mb文件以1mb的块上传

在此处输入图片说明

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM