我正在使用适用于 Android 的 Dropbox Sync api,并研究了如何将文件从我的应用程序上传到我的 Dropbox 中的文件夹。我现在正在寻找的是能够将文件从保管箱下载回我的应用程序。
可以检查文件是否存在:
DbxFileSystem dbxFs = DbxFileSystem.forAccount(mDbxAcctMgr.getLinkedAccount());
if (dbxFs.exists(testPath)) {
// create file and upload to dropbox
}
有人可以指出将其下载回应用程序的方法的方向吗?(使用保管箱作为用户的备份解决方案以及 SDCard)
谢谢