Function: hfy-make-directory

hfy-make-directory is a byte-compiled function defined in htmlfontify.el.gz.

Signature

(hfy-make-directory DIR)

Documentation

Approximate equivalent of "mkdir -p DIR".

Source Code

;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
;; create a directory, cf mkdir -p
(defun hfy-make-directory (dir)
  "Approximate equivalent of \"mkdir -p DIR\"."
  ;;(message "hfy-make-directory");;DBUG
  (if (file-exists-p dir)
      (if (file-directory-p dir) t)
    (make-directory dir t)))