file_sizes 1.0.6 copy "file_sizes: ^1.0.6" to clipboard
file_sizes: ^1.0.6 copied to clipboard

Get the Human readable size of the file. It is purely written in dart and support both number and string as parameters.

FileSize #

pub package Dart

Get the Human readable size of the file. It is purely written in dart and support both number and string as parameters.

Examples #

getSize(string or number, {PrecisionValue}): returns String

  • Direct Method Call
FileSize.getSize(1000)               '1.00 KB'
FileSize.getSize(1048576)            '1.04 MB'
FileSize.getSize(1073741824)         '1.00 GB'
FileSize.getSize(1099511627776)      '1.00 TB'
copied to clipboard
  • Method call with PrecisionValue [Optional]
FileSize.getSize(664365320, PrecisionValue.THREE)      "633.588 MB"
FileSize.getSize(4324324232343, PrecisionValue.FOUR)   "3.9321 TB"
copied to clipboard
  • Method call without decimal value
FileSize.getSize(664365320, PrecisionValue.NONE)         "633 MB"
FileSize.getSize(4324324232343, PrecisionValue.NONE)     "3 TB"
copied to clipboard

getKiloBytes(string or number, {PrecisionValue}): returns String

FileSize.getKiloBytes(54613)      '54.61 KB'
copied to clipboard
27
likes
160
points
2.74k
downloads

Publisher

verified publisheranmolsethi.dev

Weekly Downloads

2024.09.17 - 2025.04.01

Get the Human readable size of the file. It is purely written in dart and support both number and string as parameters.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

More

Packages that depend on file_sizes