# 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
# File lib/fog/atmos/models/storage/directory.rb, line 21 def directories @directories ||= begin Fog::Storage::Atmos::Directories.new( :directory => self, :service => service ) end end
Generated with the Darkfish Rdoc Generator 2.