Function: projectile-all-project-files
projectile-all-project-files is a byte-compiled function defined in
projectile.el.
Signature
(projectile-all-project-files)
Documentation
Get a list of all files in all projects.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-all-project-files ()
"Get a list of all files in all projects."
(mapcan
(lambda (project)
(when (file-exists-p project)
(mapcar (lambda (file)
(expand-file-name file project))
(projectile-project-files project))))
projectile-known-projects))