xtyxtyx / unix_disk_space

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

Home Page:https://pub.dev/packages/unix_disk_space

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

https://pub.dev/packages/unix_disk_space

License:MIT License


Languages

Language:Dart 100.0%