forked from DevsOnFlutter/file_manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_manager.dart
executable file
·386 lines (347 loc) · 11.5 KB
/
file_manager.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
library file_manager;
import 'dart:io';
import 'dart:math' as math;
import 'package:file_manager/utils/extensions.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:path_provider/path_provider.dart';
import 'package:file_manager/helper/helper.dart';
export 'package:file_manager/helper/helper.dart';
const _methodChannel = MethodChannel('myapp/channel');
typedef _Builder = Widget Function(
BuildContext context,
List<FileSystemEntity> snapshot,
);
typedef _ErrorBuilder = Widget Function(
BuildContext context,
Object? error,
);
/// FileManager is a wonderful widget that allows you to manage files and folders, pick files and folders, and do a lot more.
/// Designed to feel like part of the Flutter framework.
///
/// Sample code
///```dart
///FileManager(
/// controller: controller,
/// builder: (context, snapshot) {
/// final List<FileSystemEntity> entitis = snapshot;
/// return ListView.builder(
/// itemCount: entitis.length,
/// itemBuilder: (context, index) {
/// return Card(
/// child: ListTile(
/// leading: FileManager.isFile(entitis[index])
/// ? Icon(Icons.feed_outlined)
/// : Icon(Icons.folder),
/// title: Text(FileManager.basename(entitis[index])),
/// onTap: () {
/// if (FileManager.isDirectory(entitis[index])) {
/// controller
/// .openDirectory(entitis[index]);
/// } else {
/// // Perform file-related tasks.
/// }
/// },
/// ),
/// );
/// },
/// );
/// },
///),
///```
class FileManager extends StatefulWidget {
/// For the loading screen, create a custom widget.
/// Simple Centered CircularProgressIndicator is provided by default.
final Widget? loadingScreen;
/// For an empty screen, create a custom widget.
final Widget? emptyFolder;
/// For an error screen, create a custom widget.
final _ErrorBuilder? errorBuilder;
///Controls the state of the FileManager.
final FileManagerController controller;
///This function allows you to create custom widgets and retrieve a list of entities `List<FileSystemEntity>.`
///
///
///```
/// builder: (context, snapshot) {
/// return ListView.builder(
/// itemCount: snapshot.length,
/// itemBuilder: (context, index) {
/// return Card(
/// child: ListTile(
/// leading: FileManager.isFile(snapshot[index])
/// ? Icon(Icons.feed_outlined)
/// : Icon(Icons.folder),
/// title: Text(FileManager.basename(snapshot[index])),
/// onTap: () {
/// if (FileManager.isDirectory(snapshot[index]))
/// controller.openDirectory(snapshot[index]);
/// },
/// ),
/// );
/// },
/// );
/// },
/// ```
final _Builder builder;
/// Hide the files and folders that are hidden.
final bool hideHiddenEntity;
FileManager({
this.emptyFolder,
this.loadingScreen,
this.errorBuilder,
required this.controller,
required this.builder,
this.hideHiddenEntity = true,
});
@override
_FileManagerState createState() => _FileManagerState();
static Future<void> requestFilesAccessPermission() async {
if (Platform.isAndroid) {
try {
await _methodChannel.invokeMethod('requestFilesAccessPermission');
} on PlatformException catch (e) {
throw e;
}
} else {
throw UnsupportedError('Only Android is supported');
}
}
/// check weather FileSystemEntity is File
/// return true if FileSystemEntity is File else returns false
static bool isFile(FileSystemEntity entity) {
return (entity is File);
}
// check weather FileSystemEntity is Directory
/// return true if FileSystemEntity is a Directory else returns Directory
static bool isDirectory(FileSystemEntity entity) {
return (entity is Directory);
}
/// Get the basename of Directory or File.
///
/// Provide [File], [Directory] or [FileSystemEntity] and returns the name as a [String].
///
/// ie:
/// ```dart
/// controller.basename(dir);
/// ```
/// to hide the extension of file, showFileExtension = flase
static String basename(dynamic entity, {bool showFileExtension = true}) {
if (entity is! FileSystemEntity) return "";
final pathSegments = entity.path.split('/');
final filename = pathSegments.last;
if (showFileExtension) return filename;
return showFileExtension ? filename.split('.').first : filename;
}
static const int base = 1024;
static const List<String> suffix = ['B', 'KB', 'MB', 'GB', 'TB'];
static const List<int> powBase = [
1,
1024,
1048576,
1073741824,
1099511627776
];
/// Format bytes to human readable string.
static String formatBytes(int bytes, [int precision = 2]) {
final base = (bytes == 0) ? 0 : (math.log(bytes) / math.log(1024)).floor();
final size = bytes / powBase[base];
final formattedSize = size.toStringAsFixed(precision);
return '$formattedSize ${suffix[base]}';
}
/// Creates the directory if it doesn't exist.
static Future<void> createFolder(String currentPath, String name) async {
await Directory(currentPath + "/" + name).create();
}
/// Return file extension as String.
///
/// ie:- `File("/../image.png")` to `"png"`
static String getFileExtension(FileSystemEntity file) {
if (file is File) {
return file.path.split("/").last.split('.').last;
} else {
throw "FileSystemEntity is Directory, not a File";
}
}
/// Get list of available storage in the device
/// returns an empty list if there is no storage
static Future<List<Directory>> getStorageList() async {
if (Platform.isAndroid) {
List<Directory> storages = (await getExternalStorageDirectories())!;
storages = storages.map((Directory e) {
final List<String> splitedPath = e.path.split("/");
return Directory(splitedPath
.sublist(
0, splitedPath.indexWhere((element) => element == "Android"))
.join("/"));
}).toList();
return storages;
} else if (Platform.isLinux) {
final Directory dir = await getApplicationDocumentsDirectory();
// Gives the home directory.
final Directory home = dir.parent;
// you may provide root directory.
// final Directory root = dir.parent.parent.parent;
return [home];
}
return [];
}
}
class _FileManagerState extends State<FileManager> {
Future<List<Directory>?>? currentDir;
@override
void dispose() {
widget.controller.dispose();
super.dispose();
}
@override
void initState() {
super.initState();
if (widget.controller.getCurrentPath.isNotEmpty) {
currentDir = Future.value([widget.controller.getCurrentDirectory]);
} else {
currentDir = Future(() async {
final list = await FileManager.getStorageList();
widget.controller.setCurrentPath = list.first.path;
return [widget.controller.getCurrentDirectory];
});
}
}
Future<List<FileSystemEntity>> entityList(String path, SortBy sortBy) async {
List<FileSystemEntity> entitys = await Directory(path).list().toList();
switch (sortBy) {
case SortBy.name:
return entitys.sortByName;
case SortBy.size:
return entitys.sortBySize;
case SortBy.date:
return entitys.sortByDate;
case SortBy.type:
return entitys.sortByType;
}
}
@override
Widget build(BuildContext context) {
return FutureBuilder<List<Directory>?>(
future: currentDir,
builder: (context, snapshot) {
if (snapshot.hasData) {
return _body(context);
} else if (snapshot.hasError) {
print(snapshot.error);
return _errorPage(context, snapshot.error);
} else {
return _loadingScreenWidget();
}
},
);
}
Widget _body(BuildContext context) {
return ValueListenableBuilder<String>(
valueListenable: widget.controller.getPathNotifier,
builder: (context, pathSnapshot, _) {
return ValueListenableBuilder<SortBy>(
valueListenable: widget.controller.getSortedByNotifier,
builder: (context, snapshot, _) {
return FutureBuilder<List<FileSystemEntity>>(
future: entityList(pathSnapshot,
widget.controller.getSortedByNotifier.value),
builder: (context, snapshot) {
if (snapshot.hasData) {
List<FileSystemEntity> entitys = snapshot.data!;
if (entitys.length == 0) {
return _emptyFolderWidget();
}
if (widget.hideHiddenEntity) {
entitys = entitys.where((element) {
if (FileManager.basename(element) == "" ||
FileManager.basename(element).startsWith('.')) {
return false;
} else {
return true;
}
}).toList();
}
return widget.builder(context, entitys);
} else if (snapshot.hasError) {
print(snapshot.error);
return _errorPage(context, snapshot.error);
} else {
return _loadingScreenWidget();
}
});
});
},
);
}
Widget _emptyFolderWidget() {
if (widget.emptyFolder == null) {
return Container(
child: Center(child: Text("Empty Directory")),
);
} else
return widget.emptyFolder!;
}
Widget _errorPage(BuildContext context, Object? error) {
if (widget.errorBuilder != null) {
return widget.errorBuilder!(context, error);
}
return Container(
color: Colors.red,
child: Center(
child: Text("Error: $error"),
),
);
}
Widget _loadingScreenWidget() {
if ((widget.loadingScreen == null)) {
return Container(
child: Center(
child: CircularProgressIndicator(),
),
);
} else {
return Container(
child: Center(
child: widget.loadingScreen,
),
);
}
}
}
/// When the current directory is not root, this widget registers a callback to prevent the user from dismissing the window
/// , or controllers the system's back button
///
/// #### Wrap Scaffold containing FileManage with `ControlBackButton`
/// ```dart
/// ControlBackButton(
/// controller: controller
/// child: Scaffold(
/// appBar: AppBar(...)
/// body: FileManager(
/// ...
/// )
/// )
/// )
/// ```
class ControlBackButton extends StatelessWidget {
const ControlBackButton(
{required this.child, required this.controller, Key? key})
: super(key: key);
final Widget child;
final FileManagerController controller;
@override
Widget build(BuildContext context) {
return WillPopScope(
child: child,
onWillPop: () async {
if (await controller.isRootDirectory()) {
return true;
} else {
controller.goToParentDirectory();
return false;
}
},
);
}
}