I expected the following C++/GCP code to return an empty list for a path which doesn't exist, but it doesn't seem to do so in practice:
for (auto&& object_metadata :
cli->ListObjects(bucket, path))
{
// how many time will this be hit?
}
Does anyone know what is the expected behavior? I couldn't find this in the documentation (perhaps I didn't look in the right place)