Function: projectile-verify-file-wildcard

projectile-verify-file-wildcard is a byte-compiled function defined in projectile.el.

Signature

(projectile-verify-file-wildcard 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. Expands wildcards using file-expand-wildcards before checking.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-verify-file-wildcard (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.
Expands wildcards using `file-expand-wildcards' before checking."
  (file-expand-wildcards (projectile-expand-root file dir)))