79 lines
2.0 KiB
Dart
79 lines
2.0 KiB
Dart
/// 文件夹选择器的根路径
|
|
|
|
import 'dart:io';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:permission_handler/permission_handler.dart';
|
|
|
|
import '../Common.dart';
|
|
import '../Method.dart';
|
|
import 'Platform.dart';
|
|
|
|
const _propertyName = "chooserRoot";
|
|
late String _chooserRoot;
|
|
|
|
Future<dynamic> initChooserRoot() async {
|
|
_chooserRoot = await method.loadProperty(_propertyName, "");
|
|
}
|
|
|
|
String _currentChooserRoot() {
|
|
if (_chooserRoot == "") {
|
|
if (Platform.isWindows) {
|
|
return '/';
|
|
} else if (Platform.isMacOS) {
|
|
return '/Users';
|
|
} else if (Platform.isLinux) {
|
|
return '/';
|
|
} else if (Platform.isAndroid) {
|
|
return '/storage/emulated/0';
|
|
} else {
|
|
throw 'error';
|
|
}
|
|
}
|
|
return _chooserRoot;
|
|
}
|
|
|
|
Future<String> currentChooserRoot() async {
|
|
if (Platform.isAndroid) {
|
|
if (androidVersion >= 30) {
|
|
if (!(await Permission.manageExternalStorage.request()).isGranted) {
|
|
throw Exception("申请权限被拒绝");
|
|
}
|
|
} else {
|
|
if (!(await Permission.storage.request()).isGranted) {
|
|
throw Exception("申请权限被拒绝");
|
|
}
|
|
}
|
|
}
|
|
return _currentChooserRoot();
|
|
}
|
|
|
|
Future<dynamic> _inputChooserRoot(BuildContext context) async {
|
|
String? input = await displayTextInputDialog(
|
|
context,
|
|
src: _chooserRoot,
|
|
title: '文件夹选择器根路径',
|
|
hint: '请输入文件夹选择器根路径',
|
|
desc: "导出时选择目录的默认路径, 同时也是根路径, 不能正常导出时也可以尝试设置此选项。",
|
|
);
|
|
if (input != null) {
|
|
await method.saveProperty(_propertyName, input);
|
|
_chooserRoot = input;
|
|
}
|
|
}
|
|
|
|
Widget chooserRootSetting() {
|
|
return StatefulBuilder(
|
|
builder: (BuildContext context, void Function(void Function()) setState) {
|
|
return ListTile(
|
|
title: const Text("文件夹选择器默认路径"),
|
|
subtitle: Text(_currentChooserRoot()),
|
|
onTap: () async {
|
|
await _inputChooserRoot(context);
|
|
setState(() {});
|
|
},
|
|
);
|
|
},
|
|
);
|
|
}
|