For instance, to translate a namestring to a pathname, you use the **PATHNAME**
function. It takes a pathname designator and returns an equivalent pathname object. When the designator is already a pathname, it’s simply returned. When it’s a stream, the original filename is extracted and returned. When the designator is a namestring, however, it’s parsed according to the local filename syntax. The language standard, as a platform-neutral document, doesn’t specify any particular mapping from namestring to pathname, but most implementations follow the same conventions on a given operating system.
You can examine these individual components of a pathname with the functions **PATHNAME-DIRECTORY**
, , and **PATHNAME-TYPE**
.
Like many other built-in objects, pathnames have their own read syntax, #p
followed by a double-quoted string. This allows you to print and read back s-expressions containing pathname objects, but because the syntax depends on the namestring parsing algorithm, such data isn’t necessarily portable between operating systems.