One month down in 2025: How are your resolutions coming along? Check out how to get back on track here.
Forum Discussion
Cyrin
8 years agoNew member | Level 2
Select, Move, and Output a Random Image from a Folder?
Hello Dropbox developer community,
I would like to start by saying that I'm very new to the useage of the Dropbox API (and, to be honest, Python in general). However, I am in the process of attempting to create a script for a bot for a chat service known as "Discord". My goal is to have two folders in my App's master folder: a "Queue" folder, and a "Previous" folder. My goal is to have my code select a random image from the "Queue" folder, have the Discord module upload the file to the chat rooms —aka servers— that it is in, and finally move the selected image to the "Previous" folder. So I guess what I'm asking is this: Is it possible to select a random image from a folder, then remember that image until it is done being used?
- Greg-DB
Dropbox Staff
The Dropbox API does offer an official Python SDK with the ability to list, download, and upload files, among other operations, so this certainly should be possible.
For instance, you could use files_list_folder and files_list_folder_continue to list the contents of any desired Dropbox folder (e.g., "/Queue") and then randomly choose one of the entries in the list. You could then get the file data using files_download, and move the file when you're done with it using files_move.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.5,941 PostsLatest Activity: 19 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!