Next: Streams, Previous: Files and Filenames, Up: Common Lisp IO and Formatting [Contents][Index]
A pathname is a structured object which represents a filename.
There are two kinds of pathnames:
An object of type logical-pathname
.
A pathname that uses a namestring syntax that is implementation-independent, and that has component values that are implementation-independent. Logical pathnames do not refer directly to filenames.
A pathname that is not a logical pathname.
An object of type pathname
is a structured representation of the name of a
file. A pathname has six components:
Returns the pathname denoted by pathspec.
If the pathspec designator is a file stream created by opening a logical pathname, a logical pathname is returned.
the pathname returned corresponds to the filename used to open the file.
namestring: a string that represents a filename using either the standardized notation for naming logical pathnames or some implementation-defined notation for naming a physical pathname.
Next: Streams, Previous: Files and Filenames, Up: Common Lisp IO and Formatting [Contents][Index]