You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.

Forum Discussion

pyraxic's avatar
pyraxic
Helpful | Level 6
7 years ago

Error downloading files from dropbox API

I am trying to download files from dropbox but keep hitting the ValidationError.   for dfiles in flist: dbx.files_download_to_file('/Users/fela/Downloads/dropbox', dfiles, rev=None) Her...
  • Greg-DB's avatar
    Greg-DB
    7 years ago

    You do need to use the full path when specifying the file you want to download. Using files_list_folder and files_list_folder_continue will give you every entry, and you can get the full path from the returned (File)Metadata.path_lower. (I.e., use `entry.path_lower` instead of `'/'+entry.name`.)