Created
January 18, 2011 12:42
-
-
Save tildedave/784383 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Directory Conversion Functions | |
(defun list-to-directory (list) | |
(let (value) | |
(dolist (element list value) | |
(setq value (file-name-as-directory (concat value element)))))) | |
(defun path-to-file (path filename) | |
(concat (list-to-directory path) filename)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment