Function: projectile-project-cache-file

projectile-project-cache-file is a byte-compiled function defined in projectile.el.

Signature

(projectile-project-cache-file &optional PROJECT-ROOT)

Documentation

The path to a project's cache file for PROJECT-ROOT.

Acts on the current project if not specified explicitly.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-project-cache-file (&optional project-root)
  "The path to a project's cache file for PROJECT-ROOT.
Acts on the current project if not specified explicitly."
  (if project-root
      (expand-file-name projectile-cache-file project-root)
    (projectile-expand-root projectile-cache-file)))