Digital Spring Cleaning: A Weekend Plan to Declutter Your Clouds

6 min read Decluttering Multi-Cloud

Somewhere across Google Drive, OneDrive, an S3 bucket, a Backblaze account, and a folder on your laptop, there are three copies of the same vacation video, a 40 GB export you forgot about, and files you last opened in 2019. Your cloud storage has quietly become a junk drawer.

The good news: you can declutter cloud storage in a single weekend. The trick is to treat it like a checklist, not a marathon — a short, repeatable ritual you run once, then again every spring. This post is that checklist. Seven steps, one command per step, no guesswork.

Find first, delete second

FileFortress is non-destructive by design. It indexes your files, surfaces the clutter, and exports a plan — it never moves or deletes anything on its own. You stay in control of the actual cleanup, which is exactly how digital decluttering should work.

1. Refresh your index

Before you can clean anything, you need an accurate picture of what you actually have. Cleaning a cloud you haven't looked at in months means working from a stale map. So start by re-scanning every connected remote — Google Drive, OneDrive, S3, Backblaze, and any local folders — in one pass.

# Re-index every connected cloud
filefortress remotes scan --all

This pulls fresh file listings into your local encrypted index. Nothing leaves your machine, and nothing on your clouds changes. When it finishes, you have a single searchable view of every file you own — the foundation for everything that follows.

2. Find the giants

The fastest way to reclaim space is to deal with a handful of huge files rather than thousands of tiny ones. Sort your whole index by size, largest first, and the worst offenders float straight to the top — old video exports, disk images, forgotten backups.

# List everything, biggest files first
filefortress ls --sort size --reverse

# Or jump straight to anything over 1 GB
filefortress search --size-min 1GB

Scan the top of the list and ask one question for each entry: do I still need this here? You don't have to decide on everything — just flag the obvious giants. They'll do most of the heavy lifting toward a tidy cloud.

3. Kill the duplicates

Duplicates are the quiet space-eaters. The same file gets uploaded from a phone, synced from a laptop, and re-shared into a different folder — and now you're paying to store it three times across two providers. FileFortress detects identical files by content, even when they live on different clouds under different names.

# Surface duplicate files across all your remotes
filefortress find duplicates

Each duplicate group shows you every copy and where it lives, so you can keep one and plan to remove the rest. For the full walkthrough — how matching works and how to choose which copy to keep — see the duplicate management workflow guide.

4. Retire the stale and the cold

Some files aren't big or duplicated — they're just old. The presentation from a project that wrapped two years ago, the draft you never went back to. Sort by modified time, oldest first, and you have an instant shortlist of candidates to archive or delete.

# Oldest files first
filefortress ls --sort time --reverse

# On S3, see which tier each file sits in
filefortress ls --storage-class

If you're on S3, the --storage-class flag shows which tier each file lives in — Standard, Infrequent Access, or one of the Glacier classes. That's useful both ways: cold files you no longer need are easy wins, and files you do still want might belong in a cheaper tier. For the deeper dive on tiers and the costs hiding behind them, read unlocking S3 storage class metadata and the hidden costs of Glacier.

5. Export a cleanup plan

By now you've identified the clutter — the giants, the duplicates, the stale files. The next move isn't to start deleting by hand. It's to turn your decisions into a script you can review before anything happens. Any FileFortress listing or search can be exported as a ready-to-run cleanup or archive plan.

# Export oldest, biggest files as an rclone plan
filefortress ls --sort size --reverse \
  --export-format rclone \
  --output-file cleanup-plan.txt

# Prefer a shell script? Pick your flavor.
filefortress search --size-min 1GB \
  --export-format powershell \
  --output-file cleanup-plan.ps1

The --export-format option supports rclone, powershell, and bash, and --output-file writes the plan to disk. The result is a plain-text file you can open, read, and edit — a clear paper trail of exactly what you intend to move or remove, before a single byte changes.

A plan, not a delete button

Exporting a plan means nothing is destroyed yet. You get a script describing the cleanup — review it, trim it, and only then run it. This is the safety net that makes a weekend cleanup feel calm instead of risky.

6. Run it safely with rclone

With the plan in hand, the actual cleanup happens through a tool you already trust: rclone. Because the export is just a script, you control how and when it runs — and you can always do a dry run first to confirm what would happen.

# Review the plan before doing anything
cat cleanup-plan.txt

# Dry-run an rclone operation to preview it
rclone move source:bucket dest:archive --dry-run

# Happy with the preview? Drop --dry-run to execute.
Review first, always

Read the exported plan line by line and run a dry run before any real move or delete. Deletion is permanent. Spending two minutes reviewing the script is the difference between a clean cloud and a panicked restore.

7. Make it a habit

The whole point of a ritual is that you don't reinvent it each year. Once you've built searches that surface your clutter — the giants, the duplicates, the stale files — save them so next spring is a two-click affair instead of a rediscovery.

# Save a cleanup search for next time
filefortress search --size-min 1GB --save-query "spring-cleaning-giants"

With --save-query, your decluttering passes become named, reusable queries. Run them whenever your clouds start feeling cluttered again — quarterly, seasonally, or just when you notice the junk drawer filling back up. Digital decluttering only sticks when it's easy to repeat.

Prefer clicking to typing?

Every step here works in the FileFortress desktop app too. The Dashboard shows your biggest files, the Duplicates view groups identical copies, Search lets you filter by size and date, and the File Explorer browses across all your clouds at once. Download the desktop app if a point-and-click cleanup is more your speed.

Your tidy-cloud weekend, in one pass

That's the whole ritual: scan, find the giants, kill the duplicates, retire the stale and the cold, export a plan, run it safely, and save your searches for next time. None of it touches your files until you say so — FileFortress finds the mess and hands you the plan, and you stay in charge of the cleanup.

Block out a couple of hours this weekend, run the seven steps once, and watch a junk drawer turn back into organized cloud storage. Then save your queries, and you'll never have to start from scratch again.

Related reading

Ready to Declutter Your Clouds?

Index every cloud, surface the clutter, and export a safe cleanup plan. FileFortress finds the mess — you stay in control of the cleanup.