@planetarium/check-free-space
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

@planetarium/check-free-space

This package uses native OS APIs to get free size available on specified path. It is powered by fs2 under the hood.

APIs

getFreeSpace

import { getFreeSpace } from '@planetarium/check-free-space';

getFreeSpace('./')

Gets free space available on specified path. It returns BigInt.

checkFreeSpace

import { checkFreeSpace } from '@planetarium/check-free-space';

if (checkFreeSpace('./', BigInt(1_000_000_000_000))) {
  console.log('Enough space available');
}

Checks if there are enough space to store specified amount of bytes in a specified path. You can provide a BigInt, string, or number value for bytes.

If you passed a string as bytes, it may throw if the string cannot be parsed as numerical value. If BigInt is passed, it will be converted to Rust u64 during the process.

Readme

Keywords

none

Package Sidebar

Install

npm i @planetarium/check-free-space

Weekly Downloads

4

Version

0.0.2

License

MIT

Unpacked Size

13.6 kB

Total Files

12

Last publish

Collaborators

  • planetarium-9c-dx
  • tkiapril
  • longfin
  • akamig
  • riemannulus
  • moreal
  • libplanet