Skip to content

xtyxtyx/unix_disk_space

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Unix Disk Space

Get free disk space info from df, Works on Unix-based systems.

Usage

A simple usage example:

import 'package:unix_disk_space/unix_disk_space.dart';

void main() async {
  final disks = await diskSpace();
  print(disks);

  final fs = await diskSpace.fs('tmpfs');
  print(fs);

  final file = await diskSpace.file('/bin/bash');
  print(file);
}

Get disk info for each filesystem.

final output = await diskSpace();

Get disk info for specified filesystem.

final output = await diskSpace.fs('tmpfs');

Get disk info for filesystem the given file is part of.

final output = await diskSpace.file('./');

Features and bugs

Please file feature requests and bugs at the issue tracker.

About

Get free disk space info from df, Works on Unix-based systems.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages