Files
flutter_server_box/lib/data/model/app/path_with_prefix.dart
2023-08-30 17:06:24 +08:00

46 lines
1007 B
Dart

import '../../../core/utils/platform.dart';
/// It's used on platform's file system.
/// So use [Platform.pathSeparator] to join path.
class LocalPath {
final String _prefixPath;
String _path = '/';
String? _prePath;
String get path => _prefixPath + _path;
LocalPath(String prefixPath) : _prefixPath = _trimSuffix(prefixPath);
void update(String newPath) {
_prePath = _path;
if (newPath == '..') {
_path = _path.substring(0, _path.lastIndexOf('/'));
if (_path == '') {
_path = '/';
}
return;
}
if (newPath == '/') {
_path = '/';
return;
}
_path = joinPath(_path, newPath);
}
bool get canBack => path != '$_prefixPath/';
bool undo() {
if (_prePath == null || _path == _prePath) {
return false;
}
_path = _prePath!;
return true;
}
}
String _trimSuffix(String prefixPath) {
if (prefixPath.endsWith('/')) {
return prefixPath.substring(0, prefixPath.length - 1);
}
return prefixPath;
}