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
bobbo1
7 years agoExplorer | Level 3
Selecting all starred photos
I need to select all of the photo's that we recently starred. The only way I can see them all together is on my homepage but from there you cannot select multiple photo's and there are no checkboxes...
- 7 years agoStarring a file only makes it appear on your home page for quick access. There's no way to select all or filter on all starred files.
martin_z1
Helpful | Level 6
I have a similar problem - I've done exactly the same as the original OP only my wife has selected about a thousand.
Can't do them one by one.
So I'm writing a script which will - download the list of names, and then find each one on my home computer and copy them into a new directory. I'll let you know how I get on tomorrow.
But really, I shouldn't need to be a geek to solve this problem.
I totally agree - the "star" is almost useless as it stands.
martin_z1
7 years agoHelpful | Level 6
Hi again
OK - I have managed to do this. It helps that I am using Linux and working on the command line, so this is not going to be useful for everyone - but here's how it goes.
a) Go to the "starred" list and ensure you click on the link to show ALL of them.
b) right-click on the page and download it to a file, called, say, photolist.html
c) now the following commands are what you need:-
This one splits all the html commands onto single lines.
sed "s/>/>\n/" photolist.html > photolist1.html
This one extracts all the file names you need - with the subdirectories they are in.
grep "^<a.*starred" > photolist1.html | sed "s/^.*preview\///" | sed "s/sed "s/\" class=\"sta.*//" > filelist.txt
No guarantees! But it worked for me. Hope this is helpful.
- martin_z17 years agoHelpful | Level 6
Hi again
I've just had reason to repeat the exercise I did in the previous post, and I've got a couple of typos in the commands.
The two commands should be:-
sed "s/>/>\n/g" photolist.html > photolist1.html
grep "^<a.*starred" photolist1.html | sed "s/^.*preview\///" | sed "s/\" class=\"sta.*//" > filelist.txt
NOTE ALSO - there is a maximum number of starred files that can be displayed on the front page - 1000. As many as you like can be starred, but only a thousand are displayed.
About View, download, and export
Need support with viewing, downloading, and exporting files and folders from your Dropbox account? Find help from the Dropbox Community.
Need more support
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!