def get(key, options = {})
remap_attributes(options, {
:delimiter => 'delimiter',
:marker => 'marker',
:max_keys => 'max-keys',
:prefix => 'prefix'
})
data = connection.get_bucket(key, options).body
directory = new(:key => data['Name'])
options = {}
for k, v in data
if ['CommonPrefixes', 'Delimiter', 'IsTruncated', 'Marker', 'MaxKeys', 'Prefix'].include?(k)
options[k] = v
end
end
directory.files.merge_attributes(options)
directory.files.load(data['Contents'])
directory
rescue Excon::Errors::NotFound
nil
end