Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
dom
2025-09-12 18:12:21 +08:00
committed by GitHub
parent da17725616
commit d6bff33d29
130 changed files with 1036 additions and 834 deletions

View File

@@ -227,9 +227,9 @@ extension ThreeDotItemTypeExt on ThreeDotItemType {
}
extension FileExt on File {
void delSync({bool recursive = false}) {
void tryDel({bool recursive = false}) {
try {
deleteSync(recursive: recursive);
delete(recursive: recursive);
} catch (_) {}
}
}