Function: f-mkdir-full-path
f-mkdir-full-path is a byte-compiled function defined in f.el.
Signature
(f-mkdir-full-path DIR)
Documentation
Create DIR from a full path.
This function is similar to f-mkdir except it can accept a full
path instead of requiring several successive directory names.
Source Code
;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-mkdir-full-path (dir)
"Create DIR from a full path.
This function is similar to `f-mkdir' except it can accept a full
path instead of requiring several successive directory names."
(apply #'f-mkdir (f-split dir)))