Glam Prestige Journal

Bright entertainment trends with youth appeal.

I need to obtain a list of all of the Dropbox file links in a fairly large sub-directory. I do not want to get them one at a time manually. Is that possible?

3

1 Answer

If you use linux, might be the solution. Just loop through all the files and get the links using the dropbox command line tool. Something like:

# To make sure spaces in the file names won't cause problems
IFS=$(echo "\n\b");
files=($(find . -type f));
for i in "${files[@]}"; do link=$(dropbox sharelink "$i"); echo 'file '"$i"' has the shared link '"$link";
done

Didn't test this, but I can imagine this working. Hope it helps!

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy