is_dir
is_dir — determines if a file is a directory.
is_dir (path)
pathA character string defining a relative or absolute file path in this file system.
This function checks if a file is a directory. Relative file paths are relative to the current working directory.
Gamma>is_dir("/home/robert/w/devel/lisp");tGamma>is_dir("../../doc");tGamma>is_dir("doc");nilGamma>