Skip to main content

Get and display the size of file and directory with binary prefixes

Project description

getsize

Get and display the size of file and directory with binary prefixes

Install

$ pip install getsize

Usage

$ getsize [OPTION] FILE...

Options:
    -h - Show this help
    -v - Show version information
    -b - Bytes
    -k - KiB
    -m - MiB
    -g - GiB
    -t - TiB
    -p - PiB
    -e - EiB
    -z - ZiB
    -y - YiB

Use as a module

In [1]: import getsize

In [2]: gs = getsize.GetSize()

In [3]: gs.convSize(4096)
Out[3]: (4.0, 'KiB')

In [4]: gs.convSize(4096, 'KiB')
Out[4]: (4.0, 'KiB')

In [5]: gs.getSize(['README.md'])
790.000 Bytes README.md

In [6]: gs.getSize(['README.md'], 'KiB')
0.771 KiB README.md

In [7]: fs = gs.getArgSize('README.md')

In [8]: for file, size in fs:
   ...:     print(file, size)
   ...:
README.md 790

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

getsize-1.1.7-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page