Function: org-persist-associated-files:file
org-persist-associated-files:file is a byte-compiled function defined
in org-persist.el.gz.
Signature
(org-persist-associated-files:file CONTAINER COLLECTION)
Documentation
List file CONTAINER associated files of COLLECTION in org-persist-directory.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-persist.el.gz
(defun org-persist-associated-files:file (container collection)
"List file CONTAINER associated files of COLLECTION in `org-persist-directory'."
(let ((file (org-persist-read container (plist-get collection :associated))))
(when (and file (file-exists-p file))
(list file))))