search_file(path, file) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/irb/locale.rb, line 156
    def search_file(path, file)
      each_sublocale do |lc|
        full_path = path + lc_path(file, lc)
        return full_path if File.exist?(full_path)
      end
      nil
    end
Register or log in to add new notes.