Function: projectile-verify-files
projectile-verify-files is a byte-compiled function defined in
projectile.el.
Signature
(projectile-verify-files FILES &optional DIR)
Documentation
Check whether all FILES exist in the project.
When DIR is specified it checks DIR's project, otherwise it acts on the current project.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-verify-files (files &optional dir)
"Check whether all FILES exist in the project.
When DIR is specified it checks DIR's project, otherwise
it acts on the current project."
(seq-every-p #'(lambda (file) (projectile-verify-file file dir)) files))