mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-04-30 05:54:26 +02:00
11 lines
293 B
Dart
11 lines
293 B
Dart
import 'dart:io';
|
|
import 'package:permission_handler/permission_handler.dart';
|
|
import 'package:path_provider/path_provider.dart' as p;
|
|
|
|
// use path_provider to get the path of the storage directory
|
|
|
|
void getPath() async {
|
|
final path = await p.getExternalStorageDirectory();
|
|
print(path);
|
|
}
|