RosettaCodeData/Task/Check-that-file-exists/Common-Lisp/check-that-file-exists-2.lisp
2023-07-01 13:44:08 -04:00

3 lines
158 B
Common Lisp

(if (cl-fad:directory-exists-p (make-pathname :directory '(:relative "docs")))
(print "rel directory exists")
(print "rel directory does not exist"))