# File lib_wpm/wpm.rb, line 3750
    def look_up(name)
      scan do |path|
        compo_path = File.join(path, name)
        if (File.directory? compo_path) then
          return compo_path
        end
      end

      nil
    end