Get the file size of a given file.
@override Future<int> size(String path) { return _attempt( 0, () async => (await bucket.head(_objectKey(path)))?.size ?? 0, ); }