One month down in 2025: How are your resolutions coming along? Check out how to get back on track here.
Forum Discussion
tiamat
5 years agoHelpful | Level 6
getting a 409 error and need help
I'm just getting started with the Dropbox API. I want to see a list of all files in my `Camera Uploads` folder (and eventually download them) via the api. I've been following some tutorials and have tried the following:
import { Dropbox } from 'dropbox'; const accessToken = "<my token>"; const dbx = new Dropbox({ accessToken, fetch, }); dbx .filesListFolder({ path: '/Camera Uploads', }) .then((response) => console.log(response));
but I get the following 409 error:
"path/not_found/."
Can anybody help? I've tried variations on the 'path' property but can't get anything to work.
A 'path/not_found' error indicates that there's nothing at the specified path, in this case, '/Camera Uploads'. There's a few reasons this might be the case:
- If your app has the "app folder" permission, it can only access the contents of the special "app folder" created for it inside the "Apps" folder (by default at /Apps/<app name>). It won't be able to access anything outside that, such as /Camera Uploads. If you need to access the /Camera Uploads folder, you'll need to register and use an app with the "full Dropbox" permission instead.
- The folder you're trying to access may be at a different path.
- You may be connected to a different account that doesn't have that folder.
- Greg-DB
Dropbox Staff
A 'path/not_found' error indicates that there's nothing at the specified path, in this case, '/Camera Uploads'. There's a few reasons this might be the case:
- If your app has the "app folder" permission, it can only access the contents of the special "app folder" created for it inside the "Apps" folder (by default at /Apps/<app name>). It won't be able to access anything outside that, such as /Camera Uploads. If you need to access the /Camera Uploads folder, you'll need to register and use an app with the "full Dropbox" permission instead.
- The folder you're trying to access may be at a different path.
- You may be connected to a different account that doesn't have that folder.
- tiamatHelpful | Level 6
I get it now. When I created my app, I selected the wrong option for granting access to files.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.5,942 PostsLatest Activity: 3 hours ago
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!