unix_disk_space 0.1.0 unix_disk_space: ^0.1.0 copied to clipboard
Get free disk space info from df, Works on Unix-based systems.
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.