Hello , im new here,
im uploading files using a s3sync command inside a ruby script
s3sync --public-read -r #{RAILS_ROOT}/public/art_works/#{a.id}/ #{put_bucket}:#{a.user_id}/art_works/#{a.id}/
the files are uploaded ok , but my problem is that i have found rare files created with content like this:
{E40327BF-517A-46e8-A6C3-AF51BC263F59}
in paths like this
https://s3.amazonaws.com/artenlinea_copy/1/art_works/11996/smallwhen the file uploaded are in path like this
https://s3.amazonaws.com/artenlinea_copy/1/art_works/11996/small/my-photo.jpgso i have the path /small and a file /small , in the same path
all the files are uploaded correct , but i just dont know what are this files , and how can avoid those.
hope you can helpme guys