Amazon S3 Iterating Through Multi-Page Results. (withMarker)
- by Jitu
Trying to iterate through AmazonS3 that has around 5000+ keys stored in the bucket, used sample code based on provided link on Amazon Developer Guide
http://docs.amazonwebservices.com/AmazonS3/latest/dev/ListingObjectKeysUsingNetSDK.html
Issue is iteration fails when NexMarker is passed which has length of more than 128 string characters, which seems unusal as withMarker accepts string as parameter and there is no documentation on limit to withMarker.
request.Marker = response.NextMarker;
Has anyone faced similar issue.
Thanks in advance.