universal_disk_space

Creator: coderz1093

Last updated:

Add to Cart

Description:

universal disk space

Universal Disk Space #
A Dart package which parses total and available disk spaces on Windows and UNIX-based systems (including Linux and macOS).
Usage #
Add universal_disk_space as a dependency to your project's pubspec.yaml file.
Example #
import 'dart:io';

import 'package:universal_disk_space/universal_disk_space.dart';

Future<void> main() async {
// Initializes the DiskSpace class.
final diskSpace = DiskSpace();

// Scan for disks in the system.
await diskSpace.scan();

// A list of disks in the system.
var disks = diskSpace.disks;

// Prints the device path, mount path, and total size of each disk in system.
for (final disk in disks) {
print(disk.devicePath); // e.g.: 'C:\' in Windows or '/dev/sdc' in Linux
print(disk
.mountPath); // e.g.: 'C:\' or '\\nasdrive' in Windows or '/' in Linux
print(disk.totalSize.toString()); // in bytes
print(disk.usedSpace.toString()); // in bytes
print(disk.availableSpace.toString()); // in bytes
print('');
}

/// Searches for the disk that '/home' belongs to.
/// Any FileSystemEntity can be used.
var homeDisk = diskSpace.getDisk(Directory('/home'));
print(homeDisk);
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.