c# - How can I non-recursively browse the contents of a directory with the AWS S3 API? - say have next directories , files in amazon s3 bucket (files in bold): bucketname/ bucketname/folder1/ bucketname/folder1/foobar.txt bucketname/folder1/subfolder1/ bucketname/folder1/subfolder1/hello.txt bucketname/folder1/subfolder2/ bucketname/folder1/subfolder2/world.txt bucketname/folder1/subfolder2/subsubfolder1/ bucketname/folder1/subfolder2/subsubfolder1/file.txt how can list objects , immediate subdirectories of given directory .net aws s3 api, without recursively getting below directory? in other words, how can "browse" contents of directory @ single level? for example, imagine want browse contents of bucketname/folder1/ . see following: bucketname/folder1/foobar.txt bucketname/folder1/subfolder1/ bucketname/folder1/subfolder2/ ...and nil else. don't want list files , directories in subdirectories, want list files , subdirectories @ folder1 level. is the...
Comments
Post a Comment