isManagedLocalBackup function
- FileSystemEntity entity
Implementation
bool isManagedLocalBackup(FileSystemEntity entity) {
if (entity is! File) return false;
return RegExp(r'^backup-\d+\.zip$').hasMatch(_basename(entity.path));
}
bool isManagedLocalBackup(FileSystemEntity entity) {
if (entity is! File) return false;
return RegExp(r'^backup-\d+\.zip$').hasMatch(_basename(entity.path));
}