Function: org-attach-id-uuid-folder-format
org-attach-id-uuid-folder-format is a byte-compiled function defined
in org-attach.el.gz.
Signature
(org-attach-id-uuid-folder-format ID)
Documentation
Translate an UUID ID into a folder-path.
Default format for how Org translates ID properties to a path for attachments. Useful if ID is generated with UUID.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-attach.el.gz
(defun org-attach-id-uuid-folder-format (id)
"Translate an UUID ID into a folder-path.
Default format for how Org translates ID properties to a path for
attachments. Useful if ID is generated with UUID."
(and (< 2 (length id))
(format "%s/%s"
(substring id 0 2)
(substring id 2))))