Function: org-publish-remove-all-timestamps
org-publish-remove-all-timestamps is a byte-compiled function defined
in ox-publish.el.gz.
Signature
(org-publish-remove-all-timestamps)
Documentation
Remove all files in the timestamp directory.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-publish.el.gz
(defun org-publish-remove-all-timestamps ()
"Remove all files in the timestamp directory."
(let ((dir org-publish-timestamp-directory))
(when (and (file-exists-p dir) (file-directory-p dir))
(mapc #'delete-file (directory-files dir 'full "[^.]\\'"))
(org-publish-reset-cache))))