# File lib/fog/atmos/models/storage/directory.rb, line 37 def destroy(opts={}) if opts[:recursive] files.each {|f| f.destroy } directories.each do |d| d.files.each {|f| f.destroy } d.destroy(opts) end end service.delete_namespace key end