Function: projectile-verify-file
projectile-verify-file is a byte-compiled function defined in
projectile.el.
Signature
(projectile-verify-file FILE &optional DIR)
Documentation
Check whether FILE exists in the current 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-file (file &optional dir)
"Check whether FILE exists in the current project.
When DIR is specified it checks DIR's project, otherwise
it acts on the current project."
(file-exists-p (projectile-expand-root file dir)))