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?
31 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";
doneDidn't test this, but I can imagine this working. Hope it helps!