Skip to content

Releases: KiriVoll/CheckFolderSize

v1.0.0

30 Jul 15:53
a5d9b25

Choose a tag to compare

Release Notes

Initial Release

Description:
The first stable release of the CheckFolderSize.py utility — a Python console script for quickly analyzing subfolder sizes with support for Cyrillic characters, multithreading, and filtering.


🆕 New Features

  1. Fast Size Calculation

    • Recursive folder traversal using os.scandir()
    • Ignores access errors and symbolic links
  2. Parallel Processing

    • Utilizes ThreadPoolExecutor
    • Scans multiple subfolders simultaneously for speed
  3. Console Progress Bar

    • Output format: [current/total] Folder_Name
    • Overwrites the same line to avoid cluttering the console
  4. Threshold Filtering

    • By default, only folders ≥ 50 MB are displayed
    • Threshold is easy to adjust directly in the code (or via CLI in a future update)
  5. Cyrillic and Unicode Support

    • Automatically sets the Windows console to UTF-8 encoding
    • Ensures correct display of folder names in any language

Thank you for using!