general

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:

  1. Search for PowerShell in the Start Menu and open it.
  2. 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
  • -pin removes the local persistence flag.
  • +u marks 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:

  1. Open Terminal (via Spotlight).
  2. 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:

  1. Open your cloud provider’s web console.
  2. Go to Recycle Bin / Trash / Bin.
  3. Select Empty Recycle Bin or Delete Forever.
  4. 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:

  1. Open Gmail and type has:attachment larger:10M in the search bar.
  2. Select old emails with large attachments and delete them.
  3. Go to the Trash folder and click Empty Trash now.

5. Summary Quick Reference Checklist

Action TargetOperating SystemTerminal Command / PathExpected Outcome
Locate Large FilesWindowsPowerShell Get-ChildItem filterPinpoints large local files inside the sync path.
Free Up SpaceWindowsattrib.exe -pin +u <path>\*Reverts local files to virtual placeholders.
Find macOS FilesmacOSfind ~/Library/CloudStorage -size +100MDisplays files consuming local cached space.
Clean App CachemacOSrm -rf ~/Library/.../Caches/*Deletes temporary logs and tracking indexes.
Empty Cloud TrashWeb ConsoleTrash/Recycle Bin > EmptyPermanently purges items from cloud quota.
Audit Shared FoldersWeb ConsoleFolder PropertiesConfirms if you are hosting folders that exceed plan limits.