How to download all files from dropbox synchronously in swift?

281 views Asked by At

Using SwiftyDropbox download method to download all files. But, i found progress block showing data all together of different files, not downloading files in a way that downloading of one file start after completing the previous one.

Here, is the code used :

DropboxClientsManager.authorizedClient?.files
   .download(path: entry.pathLower!, overwrite: true, destination: destination)
   .response { response, error in
                                
       if let response = response {
           print(response)
       }
       else if let error = error {
           print(error)      
       }
   }
   .progress { progressData in
       print(progressData)                
   }
0

There are 0 answers