Skip to content

ramiroencinas/perl6-FileSystem-Capacity

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ff7cedd · Aug 11, 2020

History

54 Commits
May 26, 2020
Dec 7, 2016
May 26, 2020
Aug 2, 2017
May 26, 2020
Sep 17, 2016
May 26, 2020
Jan 2, 2017
Dec 11, 2016

Repository files navigation

FileSystem::Capacity

Build Status

Provides filesystem capacity information.

Currently implements:

Filesystem volumes size and free space:

  • GNU/Linux by df command.
  • Win32 by wmic command.
  • OS X by df command.

Size of given Directory:

  • GNU/Linux by du command.
  • Win32.

Installing the module

zef update
zef install FileSystem::Capacity

Example Usage:

use v6;
use FileSystem::Capacity::VolumesInfo;
use FileSystem::Capacity::DirSize;

say "Volumes Capacity Info:";
say "----------------------\n";

say "Byte version:\n";

my %vols = volumes-info();

for %vols.sort(*.key)>>.kv -> ($location, $data) {
  say "Location: $location";
  say "Size: $data<size> bytes";
  say "Used: $data<used> bytes";
  say "Used%: $data<used%>";
  say "Free: $data<free> bytes";
  say "---";
}

say "----";

say "Human version:\n";

my %vols-human = volumes-info(:human);

for %vols-human.sort(*.key)>>.kv -> ($location, $data) {
  say "Location: $location";
  say "Size: $data<size>";
  say "Used: $data<used>";
  say "Used%: $data<used%>";
  say "Free: $data<free>";
  say "---";
}

my $dir;

given $*KERNEL {
  when /linux/ { $dir = '/bin' }
  when /win32/ { $dir = 'c:\windows' }
}

say "\n\nDirectory Size of $dir:";
say "-----------------\n";

say " Byte version: " ~ dirsize($dir) ~ " bytes";
say "Human version: " ~ dirsize($dir, :human) ~ "\n";

About

Provides filesystem capacity information.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages