Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check 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?
1 Reply
- Greg-DB8 years ago
Dropbox Community Moderator
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.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
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, Facebook or Instagram.
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!