Looking for a function like "directory" that will return directories not files in Common Lisp
I have used the handy function directory in the past to find a list a list of files at a give path something like this:
(make-pathname :directory "some/path" :name :wild :type :wild)
开发者_开发知识库but as far as I can tell from the documentation and my experimentation this function will only return files and never directories. Is there a similar function in standard common lisp that will return directories as well? Does directory in-fact do this and I just missed something? I am using the Clozure CCL implementation of common lisp.
As it turns out, CCL has its own directory method that has a key argument :directories which if set to true will show subdirectories. I was just looking at the wrong documentation. DOH!
精彩评论