File size in bytes (0 if not found).
Future<int> fileSize(String path) async { final info = await _backend.head(key(path)); return info?.size ?? 0; }