# File lib/dragonfly/data_storage/file_data_store.rb, line 39
      def retrieve(relative_path)
        validate_uid!(relative_path)
        path = absolute(relative_path)
        pathname = Pathname.new(path)
        raise DataNotFound, "couldn't find file #{path}" unless pathname.exist?
        [
          pathname,
          (store_meta ? retrieve_meta_data(path) : {})
        ]
      end