0 purchases
disk capacity
disk_capacity #
A Flutter plugin to get free and total disk space on Android and iOS.
Note
This plugin is inspired by disk_space package from Marvin Böddeker, no longer maintained.
Installation #
Add this to your package's pubspec.yaml file:
dependencies:
disk_capacity: ^1.0.0
copied to clipboard
Then run
flutter pub get
copied to clipboard
Usage #
import 'package:disk_capacity/disk_capacity.dart';
void main() async {
final DiskCapacity diskCapacity = DiskCapacity();
double freeSpace = await diskCapacity.getFreeDiskSpace();
double totalSpace = await diskCapacity.getTotalDiskSpace();
double freeSpaceForPath = await diskCapacity.getFreeDiskSpaceForPath('/path/to/directory');
double totalSpaceForPath = await diskCapacity.getTotalDiskSpaceForPath('/path/to/directory');
print('Free space: $freeSpace MB');
print('Total space: $totalSpace MB');
print('Free space for path: $freeSpaceForPath MB');
print('Total space for path: $totalSpaceForPath MB');
}
copied to clipboard
Contributing #
If you have any questions or ideas, please feel free to contact me or open an issue to discuss it.
License #
This project is licensed under the MIT
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.