Category: Salesforce
SFDC Apex – Get list of all the file names from Amazon S3 bucket
I have two buckets in AWS S3. For one of the buckets, code given below returns all the file names (more than 1000) but the same code returns only 1000 file names for 2nd bucket: ObjectListing objects = s3.listObjects(“bucket.new.test”); do