How to Filter and Organize Cloud Files by Size With Blober
Why Size Is an Organization Decision
Section titled "Why Size Is an Organization Decision"Size changes cost, transfer time, storage choice, and retrieval behavior.
- A videographer may want multi-gigabyte masters in object storage and small proxies on a collaboration drive.
- An IT team may separate large database dumps from small configuration backups.
- A business may need to find oversized attachments consuming expensive shared storage.
- A researcher may move large datasets to archive storage while keeping papers and README files easy to access.
Blober exposes size in two different ways: broad source filters and exact destination variables.
Source Size Filters
Section titled "Source Size Filters"Select a source folder, then expand Advanced Filters (Optional). File Size offers:
- Small: under approximately 1 MB
- Medium: approximately 1-10 MB
- Large: over approximately 10 MB
- Any size
The filter decides which files enter the workflow. It does not rename them or create size folders.
For example, to copy only large videos:
- Select the project or media folder.
- Choose video extensions.
- Choose Large.
- Select an archive destination.
- Preserve paths or add a template.
This combines type and size rather than assuming every MP4 is large.
Exact Size Variables
Section titled "Exact Size Variables"Path templates provide:
{file_size}{file_size_mb}{file_size} is the exact source-reported byte count:
1572864{file_size_mb} converts it to megabytes rounded to two decimal places:
1.50A template:
by-size/{file_size_mb}/{filename}could produce:
by-size/1.50/document.pdfThis does not create useful buckets named small, medium, or large. It creates one folder for each rounded size value. In a varied media collection that can mean thousands of nearly unique folders.
The Practical Way to Build Size Categories
Section titled "The Practical Way to Build Size Categories"Use one workflow per meaningful size class and put a static category in its template.
Large archive workflow
Section titled "Large archive workflow"Size filter: LargeTemplate: large-files/{file_dir}/{filename}Destination: low-cost object storageMedium working-assets workflow
Section titled "Medium working-assets workflow"Size filter: MediumTemplate: medium-files/{file_dir}/{filename}Destination: team collaboration storageSmall document workflow
Section titled "Small document workflow"Size filter: SmallTemplate: small-files/{file_ext}/{file_dir}/{filename}Destination: searchable document shareThis produces human categories and keeps the rule obvious in Preview & Summary.
When Exact Size in the Path Is Useful
Section titled "When Exact Size in the Path Is Useful"Exact size variables still have valid uses:
- Evidence or export manifests where visible byte count helps verification
- Diagnostic transfers investigating unexpectedly large objects
- Temporary audit collections
- Comparing provider-reported object sizes
Example:
size-audit/{file_size}/{file_dir}/{filename}For a permanent library, exact-size directories are usually less usable than size filters plus a static label.
Unknown and Zero Size
Section titled "Unknown and Zero Size"Not every provider reports a meaningful size for every object. When size is unknown, Blober renders:
NO_SIZENO_SIZE_MBTherefore:
{file_size_mb}/{filename}can produce:
NO_SIZE_MB/document.pdfThis is deliberate. A visible marker like this is safer than silently treating an unknown object as zero bytes.
Preview the source before relying on size. If many files show unknown size, organize them by type, date, or relative folder instead.
Real Workflows
Section titled "Real Workflows"Video agency: masters versus proxies
Section titled "Video agency: masters versus proxies"Large size alone does not prove a file is a master, but it is a useful first boundary when combined with names and extensions:
File Types: videoSize: LargeExclude: **/{proxy,proxies,temp,cache}/**Template: masters/{file_created_date}/{file_dir}/{filename}Create a separate workflow for proxy folders if they need a cheaper or shorter-lived destination.
Research lab: datasets versus documentation
Section titled "Research lab: datasets versus documentation"Select the study folder.
- Large workflow: archive datasets and binaries.
- Small/medium workflow: copy PDFs, Markdown, notebooks, and charts to collaboration storage.
The two destinations can serve different access patterns without changing the source.
SME: identify storage-heavy files
Section titled "SME: identify storage-heavy files"Select a shared folder, choose Large, and preview the result. Even before running a transfer, the preview provides a focused list and total known size. Copy candidates to an archive after owners confirm they are no longer active.
Size and Cloud Cost
Section titled "Size and Cloud Cost"Size filtering helps decide what to place in a cheaper tier, but it does not calculate provider charges. Storage price, retrieval fees, egress, minimum retention, and API operations still matter.
A sensible workflow is:
- Identify large inactive files.
- Copy them to a separate archive.
- Verify access and integrity.
- Retain the original until policy permits deletion.
- Use Move only after the archive is trusted.
Learn the safety difference in Copy As-Is, Organize During Backup, or Reorganize With Move, and combine size with type filters for better targeting.