clearDiskCachedImages function
Clear the disk cache directory then return if it succeed.
Implementation
Future<bool> clearDiskCachedImages({Duration? duration}) async {
try {
final Directory cacheImagesDirectory = Directory(
join((await getTemporaryDirectory()).path, cacheImageFolderName));
if (cacheImagesDirectory.existsSync()) {
if (duration == null) {
cacheImagesDirectory.deleteSync(recursive: true);
} else {
final DateTime now = DateTime.now();
await for (final FileSystemEntity file in cacheImagesDirectory.list()) {
final FileStat fs = file.statSync();
if (now.subtract(duration).isAfter(fs.changed)) {
file.deleteSync(recursive: true);
}
}
}
}
} catch (_) {
return false;
}
return true;
}