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.
Other relevant functions are documented in the f group.
Shortdoc
;; f
(f-mkdir-full-path "dir")
=> creates /default/directory/dir
(f-mkdir-full-path "other/dir")
=> creates /default/directory/other/dir
(f-mkdir-full-path "/some/path")
=> creates /some/path
(f-mkdir-full-path "~/yet/another/dir")
=> creates ~/yet/another/dir
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)))