mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 13:39:39 +00:00
26 lines
No EOL
649 B
Dart
26 lines
No EOL
649 B
Dart
import 'dart:io';
|
|
import 'package:path_provider/path_provider.dart';
|
|
|
|
String? _rootDirPath;
|
|
|
|
void setRootDirFromEnv()
|
|
=> _rootDirPath = Platform.environment['CAKE_WALLET_DIR'];
|
|
|
|
Future<Directory> getAppDir({String appName = 'cake_wallet'}) async {
|
|
Directory dir;
|
|
|
|
if (_rootDirPath != null && _rootDirPath!.isNotEmpty) {
|
|
dir = Directory.fromUri(Uri.file(_rootDirPath!));
|
|
dir.create(recursive: true);
|
|
} else {
|
|
dir = await getApplicationDocumentsDirectory();
|
|
|
|
if (Platform.isLinux) {
|
|
final appDirPath = '${dir.path}/$appName';
|
|
dir = Directory.fromUri(Uri.file(appDirPath));
|
|
await dir.create(recursive: true);
|
|
}
|
|
}
|
|
|
|
return dir;
|
|
} |