Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How does Dropbox work? [closed]

How does Dropbox work? Is it just an FTP client with an easy-to-use web interface and support for many plarforms?

What makes it so useful to programmers, even for those who are working on web-based applications and who have FTP access to a server by default?

Does Dropbox come with an improved algorithm to facilitate file transfer for a better speed? What is the difference between an FTP client and Dropbox from a programmer's point of view?

like image 296
dole doug Avatar asked Aug 24 '10 08:08

dole doug


People also ask

What happens when you close Dropbox account?

Deleting your Dropbox account deletes all of your account and file data from Dropbox and signs you out of Dropbox on all devices. When you delete your Dropbox account: Your files and folders will stop syncing on all devices. Note: Content synced to your computer will stay there, but will no longer sync.

Does Dropbox close inactive accounts?

Dropbox delete accounts after 12 months of inactivity, so, yes it will have been deleted by now. Did this post help you?

Does Dropbox delete files after a while?

Your default file recovery period depends on your Dropbox plan: Dropbox Basic, Plus, and Family users have 30 days. Dropbox Professional and Business users have 180 days.

How does Dropbox offline work?

To make files available offline, simply turn on the 'Available offline' option for individual files you'd like to work with. Dropbox Professional, Dropbox Business or Dropbox Enterprise customers can also make folders available offline by switching on the same option in each folder.


2 Answers

FTP is just a way of copying files. And copying is not the same as synchronizing, which I believe is Dropbox's biggest strength.

Dropbox is a multiway synchronization system. This means if you are using your Dropbox account on many machines and editing different files on each machine, they will all be synchronised appropriately. With FTP you would have to delicately pick and choose which files need to be removed or added from each client to the server.

Another main difference is that synchronisation happens automatically whenever a file changes, which FTP does not do.

In terms of algorithms, I would guess that Dropbox uses file deltas for file transfer, which makes it much more efficient than FTP. This means only the parts of the file that changed are transferred instead of transferring the entire file every time it changes (see rsync).

I believe you are only asking about Dropbox's core functionality. Beyond that, Dropbox has lots of cool features that FTP does not like some revision control, photo gallery sharing, etc.

like image 63
Jono Avatar answered Oct 13 '22 07:10

Jono


Dropbox files are not accessible by FTP. The API uses a REST-style architecture over the HTTP protocol. See Build the power of Dropbox into your app.

like image 40
citrin Avatar answered Oct 13 '22 06:10

citrin