# File lib/rudy/metadata/disk.rb, line 78
78:     def name
79:       sep = File::SEPARATOR
80:       dirs = @path.split sep if @path && !@path.empty?
81:       unless @path == File::SEPARATOR
82:         dirs.shift while dirs && (dirs[0].nil? || dirs[0].empty?)
83:       end
84:       # Calls Rudy::Metadata#name with disk specific components
85:       super *dirs  
86:     end