I've developed using both. Dropbox is much more well-known overall where Box is much more well-known in the enterprise area. From the iOS developer side of things I much prefer Dropbox and here's why:
- Box's SDK authentication uses a modal view controller with a web view to authenticate. Its appearance is somewhat unpolished and glitchy. Dropbox redirects to the Dropbox app if installed and if not uses a modal view controller. Box used to use this method but no longer does for some reason. It's much more cumbersome to log in without it.
- Dropbox is path-based and all actions are based on a path. Box requires that you recursively iterate from the root to get each level's unique ID if all you have is a path.
- Box's SDK has had a much slower development cycle than Dropbox. There are many operations that are not yet coded.
- Box refreshes the login token frequently, which has a tendency to slow things down.
All of these make something as common as a file chooser much, much easier to implement on Dropbox.
ok they've change the monthly transfer limit since the last time they offered 50 GB for free. However the 250MB file size limit is still a deal breaker for me.
I wonder, what's the incentive to use Box instead of Dropbox? The space is nice, but trust isn't so easily earned. I'm wondering why to trust Box with personal files.
I would venture to say that most people use dropbox and similar services for image sync. Sure people use it for all sorts of things, but I would bet that the majority is images.
Yep, I got 50 GB free a while back (I don't remember with/from what) so I planned to use it for backing stuff up. After I discovered that the file size limit was 250 MB I had to reconfigure things in order to split files at ~200 MB in size.
(See also the limits on monthly transfer.)
Now I just use Amazon Glacier and my "Box" is empty.
Trust is something very subject but they have been in the industry over a long time. Box was started before Dropbox in 2005. It has been focusing on enterprises till now.
I guess with the new iOS app and free space they are planning to move to the consumer market.
> I wonder, what's the incentive to use Box instead of Dropbox?
Surely you are trolling. Box has a much more sophisticated offering for enterprise customers, including a platform where third parties can offer apps for business users.
If it is free you could try it, no need to put your most sensitive documents on Box. Get the free 50GB and wait some time until you think the service can be trusted.
DropBox, Box, GDrive are not really designed and most importantly prices to store a lot of data. If you want space then there are Chinese services that will give you up to 36TB, Mail.Ru will give you 1TB ... which is plenty. If you want peace of mind then it is probably best to use DropBox etc. for WIP stuff and something like AWS Glacier for archival storage. Plenty of space and peace of mind.
Weiyun http://www.weiyun.com/index.html from Tencent is offering 10TB free cloud storage. It has a Mac app that will attach a sync folder on Finder sidebar similar to Dropbox. English version of apps coming soon.
Happy to see that they are actually offering 50gb. Most services say 50gb but it's actually upto 50gb. So you need to refer atleast 5 friends etc. to get the space.
- Box's SDK authentication uses a modal view controller with a web view to authenticate. Its appearance is somewhat unpolished and glitchy. Dropbox redirects to the Dropbox app if installed and if not uses a modal view controller. Box used to use this method but no longer does for some reason. It's much more cumbersome to log in without it.
- Dropbox is path-based and all actions are based on a path. Box requires that you recursively iterate from the root to get each level's unique ID if all you have is a path.
- Box's SDK has had a much slower development cycle than Dropbox. There are many operations that are not yet coded.
- Box refreshes the login token frequently, which has a tendency to slow things down.
All of these make something as common as a file chooser much, much easier to implement on Dropbox.