← all apps

Can I code Dropbox?

One-way backup — watch a folder, upload what changes — is a weekend script. What Dropbox actually sells is silent, reliable two-way sync across every device you own, including the part where two people edit the same file offline and it doesn't eat one of the copies.

VIBE SCORE 91/100

how this is worked out

Why CanICodeThis says Borderline

  • Watching a folder for changes and uploading to object storage is a well-documented, bounded problem
  • A simple web UI listing your files with download links covers casual access from any device
  • For personal backup — one direction, no simultaneous editing — this is genuinely a weekend, not a warning label

Read before building

  • True bi-directional sync with conflict resolution, across multiple devices possibly offline at once, is a much harder problem than the score above suggests — it's closer to a distributed-systems project than a CRUD app
  • Selective sync, smart caching of large files, and OS-level integration on every platform is real, ongoing engineering
  • Version history and file recovery after accidental deletion needs its own storage strategy, not an afterthought

Bill of materials

The parts this build actually needs, each rated on its own — the average is the Vibe Score above.

File uploads87
User login92
CRUD database95

The build spec

Build me a personal one-way cloud backup tool. A background process (menu-bar app or CLI daemon) watches a chosen folder, uploads new or changed files to an object-storage bucket I own, and keeps a simple manifest so I can browse and download files from a lightweight web page on any device. This is backup, not live two-way sync — don't attempt to reconcile simultaneous edits from multiple devices; last-write-wins is fine.
categorystorage
time to codea weekend
Borderline
their price$11.99/mo · $144/yr
last checked2026-08 · source ↗

Questions

Can I code Dropbox?

Borderline. One-way backup — watch a folder, upload what changes — is a weekend script. What Dropbox actually sells is silent, reliable two-way sync across every device you own, including the part where two people edit the same file offline and it doesn't eat one of the copies.

How much does Dropbox cost?

Dropbox costs $11.99/mo (about $144/yr) as of 2026-08. That's what a working rebuild would save you.

What do I lose by building it myself?

True bi-directional sync with conflict resolution, across multiple devices possibly offline at once, is a much harder problem than the score above suggests — it's closer to a distributed-systems project than a CRUD app Selective sync, smart caching of large files, and OS-level integration on every platform is real, ongoing engineering Version history and file recovery after accidental deletion needs its own storage strategy, not an afterthought

Is there a free alternative to Dropbox I don't have to build?

Yes — Nextcloud, Syncthing are open-source options worth trying before you build your own. Details are in the standard parts section on this sheet.