Class: File
- Inherits:
-
Object
- Object
- File
- Defined in:
- lib/bagit/file.rb
Class Method Summary collapse
-
.clean(file_name) ⇒ Object
Clean out all the empty dirs.
Class Method Details
.clean(file_name) ⇒ Object
Clean out all the empty dirs
5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/bagit/file.rb', line 5 def self.clean(file_name) return unless File.directory? file_name # clean all subdirs subdirs = Dir.entries(file_name).select { |p| File.directory?(File.join(file_name, p)) } subdirs.reject! { |p| %w[. ..].include? p } subdirs.each { |sd| File.clean File.join(file_name, sd) } # if its empty then delete it contents = Dir.entries(file_name).reject { |p| %w[. ..].include? p } Dir.delete file_name if contents.empty? end |