# File lib/dragonfly/file_data_store.rb, line 113
    def read(relative_path)
      validate_path!(relative_path)
      path = absolute(relative_path)
      pathname = Pathname.new(path)
      return nil unless pathname.exist?
      [
        pathname,
        (
          if store_meta?
            meta_store.read(path) || deprecated_meta_store.read(path) || {}
          end
        )
      ]
    end