Returns a list with the pathnames of all Rucksack files in the specified directory.
(defun rucksack-files-in-directory (directory-pathname)
"Returns a list with the pathnames of all Rucksack files
in the specified directory."
(list (merge-pathnames "roots" directory-pathname)
(merge-pathnames "objects" directory-pathname)
(merge-pathnames "heap" directory-pathname)
(merge-pathnames "schemas" directory-pathname)))
Source Context