Storage Full Errors
Resolution Checklist
- 1 Understand Cloud Storage Quota Calculation
- 2 Audit and Free Local Disk Cache on Windows
- 3 Purge Cloud Trash and App Caches on macOS
- 4 Identify Hidden Storage Consumers and Shared Space
- 5 Summary Quick Reference Checklist
Storage Full Errors
“Storage Full” errors prevent you from saving new files, editing documents, or syncing folders. In some cases, the desktop client may report “Disk Full” or “Cloud Storage Exceeded” even when you have deleted local files or believe you have ample remaining quota. This occurs because cloud storage limits count hidden resources, backup snapshots, web recycle bins, and cross-application suites.
This guide explains how cloud quotas are calculated, provides commands to locate hidden space consumers, and details steps to purge caches on both Windows and macOS.
1. Understand Cloud Storage Quota Calculation
Cloud plans do not calculate storage based solely on active local files. Space is consumed by:
- Web Recycle Bins: Deleted files continue to consume quota until they are purged from the online Trash or Recycle Bin.
- Version History Overhead: Saving a 100MB file 10 times can take up 1GB of cloud space if the provider keeps historical versions in your main quota.
- Shared Workspace Multipliers: On platforms like Dropbox, shared folders consume space from all members’ accounts, not just the owner’s.
- Cross-Service Shared Quotas: In Google One accounts, your quota is shared across Google Drive, Gmail (attachments), and Google Photos. In Microsoft 365, emails and OneDrive share capacity.
2. Audit and Free Local Disk Cache on Windows
On Windows, you can locate large files using PowerShell and free up cached sync storage.
A. Locate Large Files in your Sync Folder
Run PowerShell to find the largest files consuming space in your sync path:
- Search for PowerShell in the Start Menu and open it.
- Run the command (replace path with your cloud root):
# List files larger than 100MB in the OneDrive directory Get-ChildItem -Path "$env:UserProfile\OneDrive" -Recurse -File | Where-Object {$_.Length -gt 100MB} | Sort-Object Length -Descending | Select-Object Name, @{Name="Size (MB)";Expression={[Math]::Round($_.Length/1MB,2)}}, Directory
B. Free Up Local Space using Files On-Demand
If your local hard drive is full, dehydrate files to online-only placeholders (releases local disk space without deleting files from the cloud):
:: Dehydrate files in the OneDrive folder to make them online-only
attrib.exe -pin +u "%UserProfile%\OneDrive\*" /s /d
-pinremoves the local persistence flag.+umarks files as “unpinned” (online-only).
3. Purge Cloud Trash and App Caches on macOS
On macOS, you can purge hidden application caches and clean system-linked libraries.
A. Scan macOS Cloud Paths for Large Files
Run Terminal commands to find large files in the Apple FileProvider container:
- Open Terminal (via Spotlight).
- Scan the CloudStorage directory:
# Find files larger than 100MB in local cloud folders find ~/Library/CloudStorage/ -type f -size +100M -exec ls -lh {} \; | awk '{print $5, $9}'
B. Clear Client Cache Libraries
Terminate the client and delete cached metadata database folders (example for OneDrive):
# Force close client
killall OneDrive
# Delete local telemetry and cache logs
rm -rf ~/Library/Containers/com.microsoft.OneDrive-mac/Data/Library/Caches/*
4. Identify Hidden Storage Consumers and Shared Space
To clear space at the cloud level, you must purge trash bins and audit emails.
A. Empty Cloud Web Recycle Bins
You must permanently delete files from the web interface:
- Open your cloud provider’s web console.
- Go to Recycle Bin / Trash / Bin.
- Select Empty Recycle Bin or Delete Forever.
- For SharePoint/OneDrive Business: Click Second-stage recycle bin at the bottom of the recycle bin page and empty it as well.
B. Purge Large Gmail Attachments (For Google Drive Accounts)
If your Google Drive space is full, clean up your email storage:
- Open Gmail and type
has:attachment larger:10Min the search bar. - Select old emails with large attachments and delete them.
- Go to the Trash folder and click Empty Trash now.
5. Summary Quick Reference Checklist
| Action Target | Operating System | Terminal Command / Path | Expected Outcome |
|---|---|---|---|
| Locate Large Files | Windows | PowerShell Get-ChildItem filter | Pinpoints large local files inside the sync path. |
| Free Up Space | Windows | attrib.exe -pin +u <path>\* | Reverts local files to virtual placeholders. |
| Find macOS Files | macOS | find ~/Library/CloudStorage -size +100M | Displays files consuming local cached space. |
| Clean App Cache | macOS | rm -rf ~/Library/.../Caches/* | Deletes temporary logs and tracking indexes. |
| Empty Cloud Trash | Web Console | Trash/Recycle Bin > Empty | Permanently purges items from cloud quota. |
| Audit Shared Folders | Web Console | Folder Properties | Confirms if you are hosting folders that exceed plan limits. |