Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a public dropbox folder. Is there any way to programmatically scan that folder for all files contained within?

share|improve this question

2 Answers

up vote 1 down vote accepted

Dropbox has an web API that'll let you do that. Get one of the SDKs and go through the tutorials to get started.

share|improve this answer
sorry...totally missed this response. Can it be done without applying to be an Application and doing the whole security token thing? I don't want to scan other people's public folders, just my own. – SFun28 Mar 30 '12 at 14:50
As it stands, you do need to register your application with Dropbox (dropbox.com/developers/apps) and you do need to do the OAuth token thing. However, there is no approval step -- you can start using the API on your own Dropbox account right away. If you want to allow others to use your program, that's when you need to apply for "production" status. – Kannan Goundan Mar 31 '12 at 20:15

use it ....

require_once('bootstrap.php');

$metaData = $dropbox->metaData();

foreach($metaData['body']->contents as $file){

echo "<pre>";

echo $file->path;

}

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.