[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

25.8 File Names

Files are generally referred to by their names, in Emacs as elsewhere. File names in Emacs are represented as strings. The functions that operate on a file all expect a file name argument.

In addition to operating on files themselves, Emacs Lisp programs often need to operate on file names; i.e., to take them apart and to use part of a name to construct related file names. This section describes how to manipulate file names.

The functions in this section do not actually access files, so they can operate on file names that do not refer to an existing file or directory.

On MS-DOS and MS-Windows, these functions (like the function that actually operate on files) accept MS-DOS or MS-Windows file-name syntax, where backslashes separate the components, as well as Unix syntax; but they always return Unix syntax. On VMS, these functions (and the ones that operate on files) understand both VMS file-name syntax and Unix syntax. This enables Lisp programs to specify file names in Unix syntax and work properly on all systems without change.

25.8.1 File Name Components  The directory part of a file name, and the rest.
25.8.2 Directory Names  A directory's name as a directory is different from its name as a file.
25.8.3 Absolute and Relative File Names  Some file names are relative to a current directory.
25.8.4 Functions that Expand Filenames  Converting relative file names to absolute ones.
25.8.5 Generating Unique File Names  Generating names for temporary files.
25.8.6 File Name Completion  Finding the completions for a given file name.
25.8.7 Standard File Names  If your package uses a fixed file name, how to handle various operating systems simply.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

This document was generated on May 2, 2002 using texi2html