Future<void> ensureDirExists(Directory dir) async { if (!await dir.exists()) { await dir.create(recursive: true); } }