Dropbox Sync API Android - Updating Cached Files
I am facing trouble in updating the existing cached file within my Android Application. for(DbxFileInfo fInfo : fileList) { Log.d(TAG, "File Path = "+fInfo.path.toString()); String fileName = fInfo.path.getName().trim(); try { DbxPath tempFilePath = new DbxPath(fInfo.path.toString()); DbxFile tempFile = mDbFileSystem.open(tempFilePath); if(tempFile.getSyncStatus().isCached) { Log.v(TAG, "File is already cached !"); if(tempFile.getSyncStatus().isLatest) { Log.v(TAG, "File's Latest Version is Cached !"); } else { Log.v(TAG, "File's Latest Version is not Cached !"); } } try { tempFile