Method: Fog::Storage::Local::Directory#destroy
- Defined in:
- lib/fog/local/models/storage/directory.rb
#destroy ⇒ Object
12 13 14 15 16 17 18 19 20 21 |
# File 'lib/fog/local/models/storage/directory.rb', line 12 def destroy requires :key if ::File.directory?(path) Dir.rmdir(path) true else false end end |