def get(key, options = {})
data = service.get_container(key, options)
directory = new(:key => key)
keep_headers = data.headers.select do |k,v|
['X-Container-Bytes-Used', 'X-Container-Object-Count', 'X-Container-Read'].include?(k)
end
directory.merge_attributes(keep_headers)
directory.files.merge_attributes(options)
directory.files.instance_variable_set(:@loaded, true)
data.body.each do |file|
directory.files << directory.files.new(file)
end
directory
rescue Fog::Storage::Softlayer::NotFound
nil
end