static Future<void> deleteDirectory(Directory directory) async { if (await directory.exists()) { await directory.delete(recursive: true); } }