I need off help regarding amazon s3 with folders,
The problem i get with the Amazon s3 class by undesigned is it doesnt support folders, it will only show you the fu
So, Here's the work around. To list your directories you do this.
`val objRequest = new ListObjectsRequest()
.withBucketName("MY-BUCKET")
.withPrefix("Music/").withDelimiter("/")
val result = s3Client.listObjects(objRequest)
result.getCommonPrefixes()`
This will list all the folders in MYBUCKET/Music.
This is a away you get aroung with having a flat file store. (This is written in scala)