I have files in the S3 bucket, I tried to upload files based on the date, for example, August 08th, August 09th, how can I upload a custom date file ?. I used the following code, but it still loads the entire bucket list
aws s3 cp s3://bucketname/ folder/file --profile pname --exclude \"*\" --recursive --include \"" + "2015-08-09" + "*\"
I am not sure how to achieve this.
source share