annotate man/lispref/files.texi @ 52:461c7ba8286a r19-16-pre1

Import from CVS: tag r19-16-pre1
author cvs
date Mon, 13 Aug 2007 08:57:19 +0200
parents 376386a54a3c
children 05472e90ae02
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 @c -*-texinfo-*-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 @c This is part of the XEmacs Lisp Reference Manual.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 @c See the file lispref.texi for copying conditions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 @setfilename ../../info/files.info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 @node Files, Backups and Auto-Saving, Documentation, Top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 @chapter Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 In XEmacs, you can find, create, view, save, and otherwise work with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 files and file directories. This chapter describes most of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 file-related functions of XEmacs Lisp, but a few others are described in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 @ref{Buffers}, and those related to backups and auto-saving are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 described in @ref{Backups and Auto-Saving}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 Many of the file functions take one or more arguments that are file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 names. A file name is actually a string. Most of these functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 expand file name arguments using @code{expand-file-name}, so that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 @file{~} is handled correctly, as are relative file names (including
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 @samp{../}). These functions don't recognize environment variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 substitutions such as @samp{$HOME}. @xref{File Name Expansion}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 * Visiting Files:: Reading files into Emacs buffers for editing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 * Saving Buffers:: Writing changed buffers back into files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 * Reading from Files:: Reading files into buffers without visiting.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 * Writing to Files:: Writing new files from parts of buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 * File Locks:: Locking and unlocking files, to prevent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 simultaneous editing by two people.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 * Information about Files:: Testing existence, accessibility, size of files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 * Changing File Attributes:: Renaming files, changing protection, etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 * File Names:: Decomposing and expanding file names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 * Contents of Directories:: Getting a list of the files in a directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 * Create/Delete Dirs:: Creating and Deleting Directories.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 * Magic File Names:: Defining "magic" special handling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 for certain file names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 * Partial Files:: Treating a section of a buffer as a file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 * Format Conversion:: Conversion to and from various file formats.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 * Files and MS-DOS:: Distinguishing text and binary files on MS-DOS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 @node Visiting Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 @section Visiting Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 @cindex finding files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 @cindex visiting files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 Visiting a file means reading a file into a buffer. Once this is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 done, we say that the buffer is @dfn{visiting} that file, and call the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 file ``the visited file'' of the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 A file and a buffer are two different things. A file is information
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 recorded permanently in the computer (unless you delete it). A buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 on the other hand, is information inside of XEmacs that will vanish at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 the end of the editing session (or when you kill the buffer). Usually,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 a buffer contains information that you have copied from a file; then we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 say the buffer is visiting that file. The copy in the buffer is what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 you modify with editing commands. Such changes to the buffer do not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 change the file; therefore, to make the changes permanent, you must
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 @dfn{save} the buffer, which means copying the altered buffer contents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 back into the file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 In spite of the distinction between files and buffers, people often
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 refer to a file when they mean a buffer and vice-versa. Indeed, we say,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 ``I am editing a file,'' rather than, ``I am editing a buffer that I
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 will soon save as a file of the same name.'' Humans do not usually need
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 to make the distinction explicit. When dealing with a computer program,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 however, it is good to keep the distinction in mind.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 * Visiting Functions:: The usual interface functions for visiting.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 * Subroutines of Visiting:: Lower-level subroutines that they use.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 @node Visiting Functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 @subsection Functions for Visiting Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 This section describes the functions normally used to visit files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 For historical reasons, these functions have names starting with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 @samp{find-} rather than @samp{visit-}. @xref{Buffer File Name}, for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 functions and variables that access the visited file name of a buffer or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 that find an existing buffer by its visited file name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 In a Lisp program, if you want to look at the contents of a file but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 not alter it, the fastest way is to use @code{insert-file-contents} in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 temporary buffer. Visiting the file is not necessary and takes longer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 @xref{Reading from Files}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 @deffn Command find-file filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 This command selects a buffer visiting the file @var{filename},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 using an existing buffer if there is one, and otherwise creating a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 new buffer and reading the file into it. It also returns that buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 The body of the @code{find-file} function is very simple and looks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (switch-to-buffer (find-file-noselect filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 (See @code{switch-to-buffer} in @ref{Displaying Buffers}.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 When @code{find-file} is called interactively, it prompts for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 @var{filename} in the minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 @defun find-file-noselect filename &optional nowarn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 This function is the guts of all the file-visiting functions. It finds
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 or creates a buffer visiting the file @var{filename}, and returns it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 It uses an existing buffer if there is one, and otherwise creates a new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 buffer and reads the file into it. You may make the buffer current or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 display it in a window if you wish, but this function does not do so.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 When @code{find-file-noselect} uses an existing buffer, it first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 verifies that the file has not changed since it was last visited or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 saved in that buffer. If the file has changed, then this function asks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 the user whether to reread the changed file. If the user says
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 @samp{yes}, any changes previously made in the buffer are lost.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 If @code{find-file-noselect} needs to create a buffer, and there is no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 file named @var{filename}, it displays the message @samp{New file} in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 the echo area, and leaves the buffer empty.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 @c XEmacs feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 If @var{no-warn} is non-@code{nil}, various warnings that XEmacs normally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 gives (e.g. if another buffer is already visiting @var{filename} but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 @var{filename} has been removed from disk since that buffer was created)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 are suppressed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 The @code{find-file-noselect} function calls @code{after-find-file}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 after reading the file (@pxref{Subroutines of Visiting}). That function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 sets the buffer major mode, parses local variables, warns the user if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 there exists an auto-save file more recent than the file just visited,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 and finishes by running the functions in @code{find-file-hooks}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 The @code{find-file-noselect} function returns the buffer that is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 visiting the file @var{filename}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (find-file-noselect "/etc/fstab")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 @result{} #<buffer fstab>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 @deffn Command find-file-other-window filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 This command selects a buffer visiting the file @var{filename}, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 does so in a window other than the selected window. It may use another
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 existing window or split a window; see @ref{Displaying Buffers}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 When this command is called interactively, it prompts for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 @var{filename}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 @deffn Command find-file-read-only filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 This command selects a buffer visiting the file @var{filename}, like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 @code{find-file}, but it marks the buffer as read-only. @xref{Read Only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 Buffers}, for related functions and variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 When this command is called interactively, it prompts for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 @var{filename}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 @deffn Command view-file filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 This command visits @var{filename} in View mode, and displays it in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 recursive edit, returning to the previous buffer when done. View mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 is a mode that allows you to skim rapidly through the file but does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 let you modify it. Entering View mode runs the normal hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 @code{view-mode-hook}. @xref{Hooks}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 When @code{view-file} is called interactively, it prompts for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 @var{filename}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 @defvar find-file-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 The value of this variable is a list of functions to be called after a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 file is visited. The file's local-variables specification (if any) will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 have been processed before the hooks are run. The buffer visiting the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 file is current when the hook functions are run.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 This variable works just like a normal hook, but we think that renaming
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 it would not be advisable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 @defvar find-file-not-found-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 The value of this variable is a list of functions to be called when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 @code{find-file} or @code{find-file-noselect} is passed a nonexistent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 file name. @code{find-file-noselect} calls these functions as soon as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 it detects a nonexistent file. It calls them in the order of the list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 until one of them returns non-@code{nil}. @code{buffer-file-name} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 already set up.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 This is not a normal hook because the values of the functions are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 used and they may not all be called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 @node Subroutines of Visiting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 @subsection Subroutines of Visiting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 The @code{find-file-noselect} function uses the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 @code{create-file-buffer} and @code{after-find-file} functions as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 subroutines. Sometimes it is useful to call them directly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 @defun create-file-buffer filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 This function creates a suitably named buffer for visiting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 @var{filename}, and returns it. It uses @var{filename} (sans directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 as the name if that name is free; otherwise, it appends a string such as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 @samp{<2>} to get an unused name. See also @ref{Creating Buffers}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 @strong{Please note:} @code{create-file-buffer} does @emph{not}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 associate the new buffer with a file and does not select the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 It also does not use the default major mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (create-file-buffer "foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 @result{} #<buffer foo>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (create-file-buffer "foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 @result{} #<buffer foo<2>>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 (create-file-buffer "foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 @result{} #<buffer foo<3>>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 This function is used by @code{find-file-noselect}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 It uses @code{generate-new-buffer} (@pxref{Creating Buffers}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 @defun after-find-file &optional error warn noauto
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 This function sets the buffer major mode, and parses local variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 (@pxref{Auto Major Mode}). It is called by @code{find-file-noselect}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 and by the default revert function (@pxref{Reverting}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 @cindex new file message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 @cindex file open error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 If reading the file got an error because the file does not exist, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 its directory does exist, the caller should pass a non-@code{nil} value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 for @var{error}. In that case, @code{after-find-file} issues a warning:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 @samp{(New File)}. For more serious errors, the caller should usually not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 call @code{after-find-file}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 If @var{warn} is non-@code{nil}, then this function issues a warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 if an auto-save file exists and is more recent than the visited file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 @c XEmacs feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 If @var{noauto} is non-@code{nil}, then this function does not turn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 on auto-save mode; otherwise, it does.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 The last thing @code{after-find-file} does is call all the functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 in @code{find-file-hooks}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 @node Saving Buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 @section Saving Buffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 When you edit a file in XEmacs, you are actually working on a buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 that is visiting that file---that is, the contents of the file are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 copied into the buffer and the copy is what you edit. Changes to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 buffer do not change the file until you @dfn{save} the buffer, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 means copying the contents of the buffer into the file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 @deffn Command save-buffer &optional backup-option
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 This function saves the contents of the current buffer in its visited
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 file if the buffer has been modified since it was last visited or saved.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 Otherwise it does nothing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 @code{save-buffer} is responsible for making backup files. Normally,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 @var{backup-option} is @code{nil}, and @code{save-buffer} makes a backup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 file only if this is the first save since visiting the file. Other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 values for @var{backup-option} request the making of backup files in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 other circumstances:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 With an argument of 4 or 64, reflecting 1 or 3 @kbd{C-u}'s, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 @code{save-buffer} function marks this version of the file to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 backed up when the buffer is next saved.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 With an argument of 16 or 64, reflecting 2 or 3 @kbd{C-u}'s, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 @code{save-buffer} function unconditionally backs up the previous
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 version of the file before saving it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 @deffn Command save-some-buffers &optional save-silently-p exiting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 This command saves some modified file-visiting buffers. Normally it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 asks the user about each buffer. But if @var{save-silently-p} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 non-@code{nil}, it saves all the file-visiting buffers without querying
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 the user.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 The optional @var{exiting} argument, if non-@code{nil}, requests this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 function to offer also to save certain other buffers that are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 visiting files. These are buffers that have a non-@code{nil} local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 value of @code{buffer-offer-save}. (A user who says yes to saving one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 of these is asked to specify a file name to use.) The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 @code{save-buffers-kill-emacs} function passes a non-@code{nil} value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 for this argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 @defvar buffer-offer-save
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 When this variable is non-@code{nil} in a buffer, XEmacs offers to save
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 the buffer on exit even if the buffer is not visiting a file. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 variable is automatically local in all buffers. Normally, Mail mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (used for editing outgoing mail) sets this to @code{t}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 @deffn Command write-file filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 This function writes the current buffer into file @var{filename}, makes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 the buffer visit that file, and marks it not modified. Then it renames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 the buffer based on @var{filename}, appending a string like @samp{<2>}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 if necessary to make a unique buffer name. It does most of this work by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 calling @code{set-visited-file-name} and @code{save-buffer}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 @defvar write-file-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 The value of this variable is a list of functions to be called before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 writing out a buffer to its visited file. If one of them returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 non-@code{nil}, the file is considered already written and the rest of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 the functions are not called, nor is the usual code for writing the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 executed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 If a function in @code{write-file-hooks} returns non-@code{nil}, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 is responsible for making a backup file (if that is appropriate).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 To do so, execute the following code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 (or buffer-backed-up (backup-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 You might wish to save the file modes value returned by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 @code{backup-buffer} and use that to set the mode bits of the file that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 you write. This is what @code{save-buffer} normally does.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 Even though this is not a normal hook, you can use @code{add-hook} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 @code{remove-hook} to manipulate the list. @xref{Hooks}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 @defvar local-write-file-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 This works just like @code{write-file-hooks}, but it is intended
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 to be made local to particular buffers. It's not a good idea to make
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 @code{write-file-hooks} local to a buffer---use this variable instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 The variable is marked as a permanent local, so that changing the major
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 mode does not alter a buffer-local value. This is convenient for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 packages that read ``file'' contents in special ways, and set up hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 to save the data in a corresponding way.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 @defvar write-contents-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 This works just like @code{write-file-hooks}, but it is intended for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 hooks that pertain to the contents of the file, as opposed to hooks that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 pertain to where the file came from. Such hooks are usually set up by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 major modes, as buffer-local bindings for this variable. Switching to a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 new major mode always resets this variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 @defvar after-save-hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 This normal hook runs after a buffer has been saved in its visited file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 @defvar file-precious-flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 If this variable is non-@code{nil}, then @code{save-buffer} protects
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 against I/O errors while saving by writing the new file to a temporary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 name instead of the name it is supposed to have, and then renaming it to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 the intended name after it is clear there are no errors. This procedure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 prevents problems such as a lack of disk space from resulting in an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 invalid file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 As a side effect, backups are necessarily made by copying. @xref{Rename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 or Copy}. Yet, at the same time, saving a precious file always breaks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 all hard links between the file you save and other file names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 Some modes set this variable non-@code{nil} locally in particular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 @defopt require-final-newline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 This variable determines whether files may be written out that do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 @emph{not} end with a newline. If the value of the variable is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 @code{t}, then @code{save-buffer} silently adds a newline at the end of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 the file whenever the buffer being saved does not already end in one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 If the value of the variable is non-@code{nil}, but not @code{t}, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 @code{save-buffer} asks the user whether to add a newline each time the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 case arises.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 If the value of the variable is @code{nil}, then @code{save-buffer}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 doesn't add newlines at all. @code{nil} is the default value, but a few
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 major modes set it to @code{t} in particular buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 @node Reading from Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 @section Reading from Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 You can copy a file from the disk and insert it into a buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 using the @code{insert-file-contents} function. Don't use the user-level
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 command @code{insert-file} in a Lisp program, as that sets the mark.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 @defun insert-file-contents filename &optional visit beg end replace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 This function inserts the contents of file @var{filename} into the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 current buffer after point. It returns a list of the absolute file name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 and the length of the data inserted. An error is signaled if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 @var{filename} is not the name of a file that can be read.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 The function @code{insert-file-contents} checks the file contents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 against the defined file formats, and converts the file contents if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 appropriate. @xref{Format Conversion}. It also calls the functions in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 the list @code{after-insert-file-functions}; see @ref{Saving
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 Properties}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 If @var{visit} is non-@code{nil}, this function additionally marks the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 buffer as unmodified and sets up various fields in the buffer so that it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 is visiting the file @var{filename}: these include the buffer's visited
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 file name and its last save file modtime. This feature is used by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 @code{find-file-noselect} and you probably should not use it yourself.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 If @var{beg} and @var{end} are non-@code{nil}, they should be integers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 specifying the portion of the file to insert. In this case, @var{visit}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 must be @code{nil}. For example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (insert-file-contents filename nil 0 500)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 inserts the first 500 characters of a file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 If the argument @var{replace} is non-@code{nil}, it means to replace the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 contents of the buffer (actually, just the accessible portion) with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 contents of the file. This is better than simply deleting the buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 contents and inserting the whole file, because (1) it preserves some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 marker positions and (2) it puts less data in the undo list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 If you want to pass a file name to another process so that another
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 program can read the file, use the function @code{file-local-copy}; see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 @ref{Magic File Names}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 @node Writing to Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 @section Writing to Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 You can write the contents of a buffer, or part of a buffer, directly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 to a file on disk using the @code{append-to-file} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 @code{write-region} functions. Don't use these functions to write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 files that are being visited; that could cause confusion in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 mechanisms for visiting.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 @deffn Command append-to-file start end filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 This function appends the contents of the region delimited by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 @var{start} and @var{end} in the current buffer to the end of file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 @var{filename}. If that file does not exist, it is created. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 function returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 An error is signaled if @var{filename} specifies a nonwritable file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 or a nonexistent file in a directory where files cannot be created.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 @deffn Command write-region start end filename &optional append visit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 This function writes the region delimited by @var{start} and @var{end}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 in the current buffer into the file specified by @var{filename}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 If @var{start} is a string, then @code{write-region} writes or appends
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 that string, rather than text from the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 If @var{append} is non-@code{nil}, then the specified text is appended
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 to the existing file contents (if any).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 If @var{visit} is @code{t}, then XEmacs establishes an association
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 between the buffer and the file: the buffer is then visiting that file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 It also sets the last file modification time for the current buffer to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 @var{filename}'s modtime, and marks the buffer as not modified. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 feature is used by @code{save-buffer}, but you probably should not use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 it yourself.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 If @var{visit} is a string, it specifies the file name to visit. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 way, you can write the data to one file (@var{filename}) while recording
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 the buffer as visiting another file (@var{visit}). The argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 @var{visit} is used in the echo area message and also for file locking;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 @var{visit} is stored in @code{buffer-file-name}. This feature is used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 to implement @code{file-precious-flag}; don't use it yourself unless you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 really know what you're doing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 The function @code{write-region} converts the data which it writes to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 the appropriate file formats specified by @code{buffer-file-format}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 @xref{Format Conversion}. It also calls the functions in the list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 @code{write-region-annotate-functions}; see @ref{Saving Properties}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 Normally, @code{write-region} displays a message @samp{Wrote file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 @var{filename}} in the echo area. If @var{visit} is neither @code{t}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 nor @code{nil} nor a string, then this message is inhibited. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 feature is useful for programs that use files for internal purposes,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 files that the user does not need to know about.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 @node File Locks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 @section File Locks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 @cindex file locks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 When two users edit the same file at the same time, they are likely to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 interfere with each other. XEmacs tries to prevent this situation from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 arising by recording a @dfn{file lock} when a file is being modified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 XEmacs can then detect the first attempt to modify a buffer visiting a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 file that is locked by another XEmacs process, and ask the user what to do.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 File locks do not work properly when multiple machines can share
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 file systems, such as with NFS. Perhaps a better file locking system
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 will be implemented in the future. When file locks do not work, it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 possible for two users to make changes simultaneously, but XEmacs can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 still warn the user who saves second. Also, the detection of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 modification of a buffer visiting a file changed on disk catches some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 cases of simultaneous editing; see @ref{Modification Time}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 @c Not optional in FSF Emacs 19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 @defun file-locked-p &optional filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 This function returns @code{nil} if the file @var{filename} is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 locked by this XEmacs process. It returns @code{t} if it is locked by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 this XEmacs, and it returns the name of the user who has locked it if it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 is locked by someone else.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 (file-locked-p "foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 @defun lock-buffer &optional filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 This function locks the file @var{filename}, if the current buffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 modified. The argument @var{filename} defaults to the current buffer's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 visited file. Nothing is done if the current buffer is not visiting a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 file, or is not modified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 @defun unlock-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 This function unlocks the file being visited in the current buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 if the buffer is modified. If the buffer is not modified, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 the file should not be locked, so this function does nothing. It also
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 does nothing if the current buffer is not visiting a file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 @defun ask-user-about-lock file other-user
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 This function is called when the user tries to modify @var{file}, but it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 is locked by another user named @var{other-user}. The value it returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 determines what happens next:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 A value of @code{t} says to grab the lock on the file. Then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 this user may edit the file and @var{other-user} loses the lock.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 A value of @code{nil} says to ignore the lock and let this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 user edit the file anyway.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 @kindex file-locked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 This function may instead signal a @code{file-locked} error, in which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 case the change that the user was about to make does not take place.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 The error message for this error looks like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 @error{} File is locked: @var{file} @var{other-user}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 where @code{file} is the name of the file and @var{other-user} is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 name of the user who has locked the file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 The default definition of this function asks the user to choose what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 to do. If you wish, you can replace the @code{ask-user-about-lock}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 function with your own version that decides in another way. The code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 for its usual definition is in @file{userlock.el}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 @node Information about Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 @section Information about Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 The functions described in this section all operate on strings that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 designate file names. All the functions have names that begin with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 word @samp{file}. These functions all return information about actual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 files or directories, so their arguments must all exist as actual files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 or directories unless otherwise noted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 * Testing Accessibility:: Is a given file readable? Writable?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 * Kinds of Files:: Is it a directory? A symbolic link?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 * Truenames:: Eliminating symbolic links from a file name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 * File Attributes:: How large is it? Any other names? Etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 @node Testing Accessibility
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 @subsection Testing Accessibility
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 @cindex accessibility of a file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 @cindex file accessibility
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 These functions test for permission to access a file in specific ways.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 @defun file-exists-p filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 This function returns @code{t} if a file named @var{filename} appears
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 to exist. This does not mean you can necessarily read the file, only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 that you can find out its attributes. (On Unix, this is true if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 file exists and you have execute permission on the containing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 directories, regardless of the protection of the file itself.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 If the file does not exist, or if fascist access control policies
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 prevent you from finding the attributes of the file, this function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 @defun file-readable-p filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 This function returns @code{t} if a file named @var{filename} exists
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 and you can read it. It returns @code{nil} otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 (file-readable-p "files.texi")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 @result{} t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 (file-exists-p "/usr/spool/mqueue")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 @result{} t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 (file-readable-p "/usr/spool/mqueue")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 @defun file-executable-p filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 This function returns @code{t} if a file named @var{filename} exists and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 you can execute it. It returns @code{nil} otherwise. If the file is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 directory, execute permission means you can check the existence and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 attributes of files inside the directory, and open those files if their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 modes permit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 @defun file-writable-p filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 This function returns @code{t} if the file @var{filename} can be written
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 or created by you, and @code{nil} otherwise. A file is writable if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 file exists and you can write it. It is creatable if it does not exist,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 but the specified directory does exist and you can write in that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 In the third example below, @file{foo} is not writable because the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 parent directory does not exist, even though the user could create such
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 a directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 (file-writable-p "~/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 @result{} t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 (file-writable-p "/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 (file-writable-p "~/no-such-dir/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 @defun file-accessible-directory-p dirname
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 This function returns @code{t} if you have permission to open existing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 files in the directory whose name as a file is @var{dirname}; otherwise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 (or if there is no such directory), it returns @code{nil}. The value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 of @var{dirname} may be either a directory name or the file name of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 Example: after the following,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 (file-accessible-directory-p "/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 we can deduce that any attempt to read a file in @file{/foo/} will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 give an error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 @defun file-ownership-preserved-p filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 This function returns @code{t} if deleting the file @var{filename} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 then creating it anew would keep the file's owner unchanged.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 @defun file-newer-than-file-p filename1 filename2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 @cindex file age
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 @cindex file modification time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 This function returns @code{t} if the file @var{filename1} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 newer than file @var{filename2}. If @var{filename1} does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 exist, it returns @code{nil}. If @var{filename2} does not exist,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 it returns @code{t}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 In the following example, assume that the file @file{aug-19} was written
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 on the 19th, @file{aug-20} was written on the 20th, and the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 @file{no-file} doesn't exist at all.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 (file-newer-than-file-p "aug-19" "aug-20")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 (file-newer-than-file-p "aug-20" "aug-19")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 @result{} t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 (file-newer-than-file-p "aug-19" "no-file")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 @result{} t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 (file-newer-than-file-p "no-file" "aug-19")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 You can use @code{file-attributes} to get a file's last modification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 time as a list of two numbers. @xref{File Attributes}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 @node Kinds of Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 @subsection Distinguishing Kinds of Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 This section describes how to distinguish various kinds of files, such
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 as directories, symbolic links, and ordinary files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 @defun file-symlink-p filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 @cindex file symbolic links
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 If the file @var{filename} is a symbolic link, the @code{file-symlink-p}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 function returns the file name to which it is linked. This may be the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 name of a text file, a directory, or even another symbolic link, or it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 may be a nonexistent file name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 If the file @var{filename} is not a symbolic link (or there is no such file),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 @code{file-symlink-p} returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 (file-symlink-p "foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 (file-symlink-p "sym-link")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 @result{} "foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 (file-symlink-p "sym-link2")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 @result{} "sym-link"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 (file-symlink-p "/bin")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 @result{} "/pub/bin"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 @c !!! file-symlink-p: should show output of ls -l for comparison
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 @defun file-directory-p filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 This function returns @code{t} if @var{filename} is the name of an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 existing directory, @code{nil} otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 (file-directory-p "~rms")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 @result{} t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 (file-directory-p "~rms/lewis/files.texi")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 (file-directory-p "~rms/lewis/no-such-file")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 (file-directory-p "$HOME")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 (file-directory-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 (substitute-in-file-name "$HOME"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 @result{} t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 @defun file-regular-p filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 This function returns @code{t} if the file @var{filename} exists and is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 a regular file (not a directory, symbolic link, named pipe, terminal, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 other I/O device).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 @node Truenames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 @subsection Truenames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 @cindex truename (of file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 @c Emacs 19 features
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 The @dfn{truename} of a file is the name that you get by following
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 symbolic links until none remain, then expanding to get rid of @samp{.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 and @samp{..} as components. Strictly speaking, a file need not have a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 unique truename; the number of distinct truenames a file has is equal to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 the number of hard links to the file. However, truenames are useful
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 because they eliminate symbolic links as a cause of name variation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 @defun file-truename filename &optional default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 The function @code{file-truename} returns the true name of the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 @var{filename}. This is the name that you get by following symbolic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 links until none remain.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 @c XEmacs allows relative filenames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 If the filename is relative, @var{default} is the directory to start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 with. If @var{default} is @code{nil} or missing, the current buffer's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 value of @code{default-directory} is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 @xref{Buffer File Name}, for related information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 @node File Attributes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 @subsection Other Information about Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 This section describes the functions for getting detailed information
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 about a file, other than its contents. This information includes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 mode bits that control access permission, the owner and group numbers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 the number of names, the inode number, the size, and the times of access
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 and modification.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 @defun file-modes filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 @cindex permission
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 @cindex file attributes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 This function returns the mode bits of @var{filename}, as an integer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 The mode bits are also called the file permissions, and they specify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 access control in the usual Unix fashion. If the low-order bit is 1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 then the file is executable by all users, if the second-lowest-order bit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 is 1, then the file is writable by all users, etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 The highest value returnable is 4095 (7777 octal), meaning that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 everyone has read, write, and execute permission, that the @sc{suid} bit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 is set for both others and group, and that the sticky bit is set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 (file-modes "~/junk/diffs")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 @result{} 492 ; @r{Decimal integer.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 (format "%o" 492)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 @result{} "754" ; @r{Convert to octal.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 (set-file-modes "~/junk/diffs" 438)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 (format "%o" 438)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 @result{} "666" ; @r{Convert to octal.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 % ls -l diffs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 -rw-rw-rw- 1 lewis 0 3063 Oct 30 16:00 diffs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 @defun file-nlinks filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 This functions returns the number of names (i.e., hard links) that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 file @var{filename} has. If the file does not exist, then this function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 returns @code{nil}. Note that symbolic links have no effect on this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 function, because they are not considered to be names of the files they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 link to.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 % ls -l foo*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 -rw-rw-rw- 2 rms 4 Aug 19 01:27 foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 -rw-rw-rw- 2 rms 4 Aug 19 01:27 foo1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 (file-nlinks "foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 @result{} 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 (file-nlinks "doesnt-exist")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 @defun file-attributes filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 This function returns a list of attributes of file @var{filename}. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 the specified file cannot be opened, it returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 The elements of the list, in order, are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 @enumerate 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 @code{t} for a directory, a string for a symbolic link (the name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 linked to), or @code{nil} for a text file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 @c Wordy so as to prevent an overfull hbox. --rjc 15mar92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 The number of names the file has. Alternate names, also known as hard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 links, can be created by using the @code{add-name-to-file} function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 (@pxref{Changing File Attributes}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 The file's @sc{uid}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 The file's @sc{gid}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 The time of last access, as a list of two integers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 The first integer has the high-order 16 bits of time,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 the second has the low 16 bits. (This is similar to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 value of @code{current-time}; see @ref{Time of Day}.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 The time of last modification as a list of two integers (as above).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 The time of last status change as a list of two integers (as above).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 The size of the file in bytes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 The file's modes, as a string of ten letters or dashes,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 as in @samp{ls -l}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 @code{t} if the file's @sc{gid} would change if file were
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 deleted and recreated; @code{nil} otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 The file's inode number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 The file system number of the file system that the file is in. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 element and the file's inode number together give enough information to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 distinguish any two files on the system---no two files can have the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 values for both of these numbers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 @end enumerate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 For example, here are the file attributes for @file{files.texi}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 (file-attributes "files.texi")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 @result{} (nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 2235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 (8489 20284)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 (8489 20284)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 (8489 20285)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 14906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 "-rw-rw-rw-"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 129500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 -32252)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 and here is how the result is interpreted:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 @table @code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 @item nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 is neither a directory nor a symbolic link.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 @item 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 has only one name (the name @file{files.texi} in the current default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 directory).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 @item 2235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 is owned by the user with @sc{uid} 2235.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 @item 75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 is in the group with @sc{gid} 75.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 @item (8489 20284)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 was last accessed on Aug 19 00:09. Unfortunately, you cannot convert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 this number into a time string in XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 @item (8489 20284)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 was last modified on Aug 19 00:09.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 @item (8489 20285)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 last had its inode changed on Aug 19 00:09.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 @item 14906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 is 14906 characters long.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 @item "-rw-rw-rw-"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 has a mode of read and write access for the owner, group, and world.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 @item nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 would retain the same @sc{gid} if it were recreated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 @item 129500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 has an inode number of 129500.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 @item -32252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 is on file system number -32252.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 @end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 @node Changing File Attributes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 @section Changing File Names and Attributes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 @cindex renaming files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 @cindex copying files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 @cindex deleting files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 @cindex linking files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 @cindex setting modes of files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 The functions in this section rename, copy, delete, link, and set the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 modes of files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 In the functions that have an argument @var{newname}, if a file by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 name of @var{newname} already exists, the actions taken depend on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 value of the argument @var{ok-if-already-exists}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 Signal a @code{file-already-exists} error if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 @var{ok-if-already-exists} is @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 Request confirmation if @var{ok-if-already-exists} is a number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 Replace the old file without confirmation if @var{ok-if-already-exists}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 is any other value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 @deffn Command add-name-to-file oldname newname &optional ok-if-already-exists
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 @cindex file with multiple names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 @cindex file hard link
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 This function gives the file named @var{oldname} the additional name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 @var{newname}. This means that @var{newname} becomes a new ``hard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 link'' to @var{oldname}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 In the first part of the following example, we list two files,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 @file{foo} and @file{foo3}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 % ls -l fo*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 -rw-rw-rw- 1 rms 29 Aug 18 20:32 foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 -rw-rw-rw- 1 rms 24 Aug 18 20:31 foo3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 Then we evaluate the form @code{(add-name-to-file "~/lewis/foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 "~/lewis/foo2")}. Again we list the files. This shows two names,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 @file{foo} and @file{foo2}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 (add-name-to-file "~/lewis/foo1" "~/lewis/foo2")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 % ls -l fo*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 -rw-rw-rw- 2 rms 29 Aug 18 20:32 foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 -rw-rw-rw- 2 rms 29 Aug 18 20:32 foo2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 -rw-rw-rw- 1 rms 24 Aug 18 20:31 foo3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 @c !!! Check whether this set of examples is consistent. --rjc 15mar92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 Finally, we evaluate the following:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 (add-name-to-file "~/lewis/foo" "~/lewis/foo3" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 and list the files again. Now there are three names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 for one file: @file{foo}, @file{foo2}, and @file{foo3}. The old
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 contents of @file{foo3} are lost.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 (add-name-to-file "~/lewis/foo1" "~/lewis/foo3")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 % ls -l fo*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 -rw-rw-rw- 3 rms 29 Aug 18 20:32 foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 -rw-rw-rw- 3 rms 29 Aug 18 20:32 foo2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 -rw-rw-rw- 3 rms 29 Aug 18 20:32 foo3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 This function is meaningless on VMS, where multiple names for one file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 are not allowed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 See also @code{file-nlinks} in @ref{File Attributes}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 @deffn Command rename-file filename newname &optional ok-if-already-exists
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 This command renames the file @var{filename} as @var{newname}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 If @var{filename} has additional names aside from @var{filename}, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 continues to have those names. In fact, adding the name @var{newname}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 with @code{add-name-to-file} and then deleting @var{filename} has the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 same effect as renaming, aside from momentary intermediate states.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 In an interactive call, this function prompts for @var{filename} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 @var{newname} in the minibuffer; also, it requests confirmation if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 @var{newname} already exists.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 @deffn Command copy-file oldname newname &optional ok-if-exists time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 This command copies the file @var{oldname} to @var{newname}. An
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 error is signaled if @var{oldname} does not exist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 If @var{time} is non-@code{nil}, then this functions gives the new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 file the same last-modified time that the old one has. (This works on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 only some operating systems.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 In an interactive call, this function prompts for @var{filename} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 @var{newname} in the minibuffer; also, it requests confirmation if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 @var{newname} already exists.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 @deffn Command delete-file filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 @pindex rm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 This command deletes the file @var{filename}, like the shell command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 @samp{rm @var{filename}}. If the file has multiple names, it continues
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 to exist under the other names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 A suitable kind of @code{file-error} error is signaled if the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 does not exist, or is not deletable. (On Unix, a file is deletable if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 its directory is writable.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 See also @code{delete-directory} in @ref{Create/Delete Dirs}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 @deffn Command make-symbolic-link filename newname &optional ok-if-exists
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 @pindex ln
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 @kindex file-already-exists
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 This command makes a symbolic link to @var{filename}, named
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 @var{newname}. This is like the shell command @samp{ln -s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 @var{filename} @var{newname}}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 In an interactive call, this function prompts for @var{filename} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 @var{newname} in the minibuffer; also, it requests confirmation if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 @var{newname} already exists.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 @defun define-logical-name varname string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 This function defines the logical name @var{name} to have the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 @var{string}. It is available only on VMS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 @defun set-file-modes filename mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 This function sets mode bits of @var{filename} to @var{mode} (which must
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 be an integer). Only the low 12 bits of @var{mode} are used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 @defun set-default-file-modes mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 This function sets the default file protection for new files created by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 XEmacs and its subprocesses. Every file created with XEmacs initially has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 this protection. On Unix, the default protection is the bitwise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 complement of the ``umask'' value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 The argument @var{mode} must be an integer. Only the low 9 bits of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 @var{mode} are used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 Saving a modified version of an existing file does not count as creating
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 the file; it does not change the file's mode, and does not use the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 default file protection.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 @defun default-file-modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 This function returns the current default protection value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 @cindex MS-DOS and file modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 @cindex file modes and MS-DOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 On MS-DOS, there is no such thing as an ``executable'' file mode bit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 So Emacs considers a file executable if its name ends in @samp{.com},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 @samp{.bat} or @samp{.exe}. This is reflected in the values returned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 by @code{file-modes} and @code{file-attributes}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 @node File Names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 @section File Names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 @cindex file names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 Files are generally referred to by their names, in XEmacs as elsewhere.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 File names in XEmacs are represented as strings. The functions that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 operate on a file all expect a file name argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 In addition to operating on files themselves, XEmacs Lisp programs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 often need to operate on the names; i.e., to take them apart and to use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 part of a name to construct related file names. This section describes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 how to manipulate file names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 The functions in this section do not actually access files, so they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 can operate on file names that do not refer to an existing file or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 On VMS, all these functions understand both VMS file-name syntax and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 Unix syntax. This is so that all the standard Lisp libraries can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 specify file names in Unix syntax and work properly on VMS without
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 change. On MS-DOS, these functions understand MS-DOS file-name syntax
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 as well as Unix syntax.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 * File Name Components:: The directory part of a file name, and the rest.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 * Directory Names:: A directory's name as a directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 is different from its name as a file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 * Relative File Names:: Some file names are relative to a current directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 * File Name Expansion:: Converting relative file names to absolute ones.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 * Unique File Names:: Generating names for temporary files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 * File Name Completion:: Finding the completions for a given file name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 @node File Name Components
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 @subsection File Name Components
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 @cindex directory part (of file name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 @cindex nondirectory part (of file name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 @cindex version number (in file name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 The operating system groups files into directories. To specify a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 file, you must specify the directory and the file's name within that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 directory. Therefore, XEmacs considers a file name as having two main
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 parts: the @dfn{directory name} part, and the @dfn{nondirectory} part
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 (or @dfn{file name within the directory}). Either part may be empty.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 Concatenating these two parts reproduces the original file name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 On Unix, the directory part is everything up to and including the last
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 slash; the nondirectory part is the rest. The rules in VMS syntax are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 complicated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 For some purposes, the nondirectory part is further subdivided into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 the name proper and the @dfn{version number}. On Unix, only backup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 files have version numbers in their names; on VMS, every file has a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 version number, but most of the time the file name actually used in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 XEmacs omits the version number. Version numbers are found mostly in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 directory lists.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 @defun file-name-directory filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 This function returns the directory part of @var{filename} (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 @code{nil} if @var{filename} does not include a directory part). On
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 Unix, the function returns a string ending in a slash. On VMS, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 returns a string ending in one of the three characters @samp{:},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 @samp{]}, or @samp{>}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 (file-name-directory "lewis/foo") ; @r{Unix example}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 @result{} "lewis/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 (file-name-directory "foo") ; @r{Unix example}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 (file-name-directory "[X]FOO.TMP") ; @r{VMS example}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 @result{} "[X]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 @defun file-name-nondirectory filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 This function returns the nondirectory part of @var{filename}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 (file-name-nondirectory "lewis/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 @result{} "foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 (file-name-nondirectory "foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 @result{} "foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 ;; @r{The following example is accurate only on VMS.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 (file-name-nondirectory "[X]FOO.TMP")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 @result{} "FOO.TMP"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 @defun file-name-sans-versions filename &optional keep-backup-version
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 This function returns @var{filename} without any file version numbers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 backup version numbers, or trailing tildes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 @c XEmacs feature?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 If @var{keep-backup-version} is non-@code{nil}, we do not remove backup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 version numbers, only true file version numbers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 (file-name-sans-versions "~rms/foo.~1~")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 @result{} "~rms/foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 (file-name-sans-versions "~rms/foo~")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 @result{} "~rms/foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 (file-name-sans-versions "~rms/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 @result{} "~rms/foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 ;; @r{The following example applies to VMS only.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 (file-name-sans-versions "foo;23")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 @result{} "foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 @defun file-name-sans-extension filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 This function returns @var{filename} minus its ``extension,'' if any.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 The extension, in a file name, is the part that starts with the last
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 @samp{.} in the last name component. For example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 (file-name-sans-extension "foo.lose.c")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 @result{} "foo.lose"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 (file-name-sans-extension "big.hack/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 @result{} "big.hack/foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 @node Directory Names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 @subsection Directory Names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 @cindex directory name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 @cindex file name of directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 A @dfn{directory name} is the name of a directory. A directory is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 kind of file, and it has a file name, which is related to the directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 name but not identical to it. (This is not quite the same as the usual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 Unix terminology.) These two different names for the same entity are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 related by a syntactic transformation. On Unix, this is simple: a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 directory name ends in a slash, whereas the directory's name as a file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 lacks that slash. On VMS, the relationship is more complicated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 The difference between a directory name and its name as a file is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 subtle but crucial. When an XEmacs variable or function argument is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 described as being a directory name, a file name of a directory is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 acceptable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 The following two functions convert between directory names and file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 names. They do nothing special with environment variable substitutions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 such as @samp{$HOME}, and the constructs @samp{~}, and @samp{..}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 @defun file-name-as-directory filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 This function returns a string representing @var{filename} in a form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 that the operating system will interpret as the name of a directory. In
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 Unix, this means appending a slash to the string. On VMS, the function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 converts a string of the form @file{[X]Y.DIR.1} to the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 @file{[X.Y]}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 (file-name-as-directory "~rms/lewis")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 @result{} "~rms/lewis/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 @defun directory-file-name dirname
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 This function returns a string representing @var{dirname} in a form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 that the operating system will interpret as the name of a file. On
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 Unix, this means removing a final slash from the string. On VMS, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 function converts a string of the form @file{[X.Y]} to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 @file{[X]Y.DIR.1}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 (directory-file-name "~lewis/")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 @result{} "~lewis"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 @cindex directory name abbreviation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 Directory name abbreviations are useful for directories that are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 normally accessed through symbolic links. Sometimes the users recognize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 primarily the link's name as ``the name'' of the directory, and find it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 annoying to see the directory's ``real'' name. If you define the link
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 name as an abbreviation for the ``real'' name, XEmacs shows users the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 abbreviation instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 If you wish to convert a directory name to its abbreviation, use this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 function:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 @defun abbreviate-file-name dirname &optional hack-homedir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 This function applies abbreviations from @code{directory-abbrev-alist}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 to its argument, and substitutes @samp{~} for the user's home
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 @c XEmacs feature?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 If @var{hack-homedir} is non-@code{nil}, then this also substitutes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 @samp{~} for the user's home directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 @defvar directory-abbrev-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 The variable @code{directory-abbrev-alist} contains an alist of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 abbreviations to use for file directories. Each element has the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 @code{(@var{from} . @var{to})}, and says to replace @var{from} with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 @var{to} when it appears in a directory name. The @var{from} string is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 actually a regular expression; it should always start with @samp{^}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 The function @code{abbreviate-file-name} performs these substitutions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 You can set this variable in @file{site-init.el} to describe the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 abbreviations appropriate for your site.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 Here's an example, from a system on which file system @file{/home/fsf}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 and so on are normally accessed through symbolic links named @file{/fsf}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 and so on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 (("^/home/fsf" . "/fsf")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 ("^/home/gp" . "/gp")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 ("^/home/gd" . "/gd"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 @c To convert a directory name to its abbreviation, use this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 @c function:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 @c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 @c @defun abbreviate-file-name dirname
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 @c This function applies abbreviations from @code{directory-abbrev-alist}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 @c to its argument, and substitutes @samp{~} for the user's home
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 @c directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 @c @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 @node Relative File Names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 @subsection Absolute and Relative File Names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 @cindex absolute file name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 @cindex relative file name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 All the directories in the file system form a tree starting at the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 root directory. A file name can specify all the directory names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 starting from the root of the tree; then it is called an @dfn{absolute}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 file name. Or it can specify the position of the file in the tree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 relative to a default directory; then it is called a @dfn{relative}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 file name. On Unix, an absolute file name starts with a slash or a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 tilde (@samp{~}), and a relative one does not. The rules on VMS are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 complicated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 @defun file-name-absolute-p filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 This function returns @code{t} if file @var{filename} is an absolute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 file name, @code{nil} otherwise. On VMS, this function understands both
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 Unix syntax and VMS syntax.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 (file-name-absolute-p "~rms/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 @result{} t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 (file-name-absolute-p "rms/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 (file-name-absolute-p "/user/rms/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 @result{} t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 @node File Name Expansion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 @subsection Functions that Expand Filenames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 @cindex expansion of file names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 @dfn{Expansion} of a file name means converting a relative file name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 to an absolute one. Since this is done relative to a default directory,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 you must specify the default directory name as well as the file name to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 be expanded. Expansion also simplifies file names by eliminating
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 redundancies such as @file{./} and @file{@var{name}/../}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 @defun expand-file-name filename &optional directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 This function converts @var{filename} to an absolute file name. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 @var{directory} is supplied, it is the directory to start with if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 @var{filename} is relative. (The value of @var{directory} should itself
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 be an absolute directory name; it may start with @samp{~}.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 Otherwise, the current buffer's value of @code{default-directory} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 used. For example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 (expand-file-name "foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 @result{} "/xcssun/users/rms/lewis/foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 (expand-file-name "../foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 @result{} "/xcssun/users/rms/foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 (expand-file-name "foo" "/usr/spool/")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 @result{} "/usr/spool/foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 (expand-file-name "$HOME/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 @result{} "/xcssun/users/rms/lewis/$HOME/foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 Filenames containing @samp{.} or @samp{..} are simplified to their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 canonical form:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 (expand-file-name "bar/../foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 @result{} "/xcssun/users/rms/lewis/foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 @samp{~/} is expanded into the user's home directory. A @samp{/} or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 @samp{~} following a @samp{/} is taken to be the start of an absolute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 file name that overrides what precedes it, so everything before that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 @samp{/} or @samp{~} is deleted. For example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 "/a1/gnu//usr/local/lib/emacs/etc/MACHINES")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 @result{} "/usr/local/lib/emacs/etc/MACHINES"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 (expand-file-name "/a1/gnu/~/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 @result{} "/xcssun/users/rms/foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 In both cases, @file{/a1/gnu/} is discarded because an absolute file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 name follows it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 Note that @code{expand-file-name} does @emph{not} expand environment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 variables; only @code{substitute-in-file-name} does that.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 @defun file-relative-name filename &optional directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 This function does the inverse of expansion---it tries to return a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 relative name that is equivalent to @var{filename} when interpreted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 relative to @var{directory}. (If such a relative name would be longer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 than the absolute name, it returns the absolute name instead.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 @c XEmacs feature?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 If @var{directory} is @code{nil} or omitted, the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 @code{default-directory} is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 (file-relative-name "/foo/bar" "/foo/")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 @result{} "bar")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 (file-relative-name "/foo/bar" "/hack/")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 @result{} "/foo/bar")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 @defvar default-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 The value of this buffer-local variable is the default directory for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 current buffer. It should be an absolute directory name; it may start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 with @samp{~}. This variable is local in every buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 @code{expand-file-name} uses the default directory when its second
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 argument is @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 On Unix systems, the value is always a string ending with a slash.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 default-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 @result{} "/user/lewis/manual/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 @defun substitute-in-file-name filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 This function replaces environment variable references in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 @var{filename} with the environment variable values. Following standard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 Unix shell syntax, @samp{$} is the prefix to substitute an environment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 variable value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 The environment variable name is the series of alphanumeric characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 (including underscores) that follow the @samp{$}. If the character following
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 the @samp{$} is a @samp{@{}, then the variable name is everything up to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 matching @samp{@}}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 @c Wordy to avoid overfull hbox. --rjc 15mar92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 Here we assume that the environment variable @code{HOME}, which holds
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 the user's home directory name, has value @samp{/xcssun/users/rms}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 (substitute-in-file-name "$HOME/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 @result{} "/xcssun/users/rms/foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 @c If a @samp{~} or a @samp{/} appears following a @samp{/}, after
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 @c substitution, everything before the following @samp{/} is discarded:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 After substitution, a @samp{/} or @samp{~} following a @samp{/} is taken
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 to be the start of an absolute file name that overrides what precedes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 it, so everything before that @samp{/} or @samp{~} is deleted. For
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 (substitute-in-file-name "bar/~/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 @result{} "~/foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 (substitute-in-file-name "/usr/local/$HOME/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 @result{} "/xcssun/users/rms/foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 On VMS, @samp{$} substitution is not done, so this function does nothing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 on VMS except discard superfluous initial components as shown above.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 @node Unique File Names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 @subsection Generating Unique File Names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 Some programs need to write temporary files. Here is the usual way to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 construct a name for such a file:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 (make-temp-name (concat "/tmp/" @var{name-of-application}))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 Here we use the directory @file{/tmp/} because that is the standard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 place on Unix for temporary files. The job of @code{make-temp-name} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 to prevent two different users or two different processes from trying to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 use the same name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 @defun make-temp-name string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 This function generates a string that can be used as a unique name. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 name starts with @var{string}, and ends with a number that is different
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 in each XEmacs process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 (make-temp-name "/tmp/foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 @result{} "/tmp/foo021304"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 To prevent conflicts among different libraries running in the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 XEmacs, each Lisp program that uses @code{make-temp-name} should have its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 own @var{string}. The number added to the end of the name distinguishes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 between the same application running in different XEmacs processes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 @node File Name Completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 @subsection File Name Completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 @cindex file name completion subroutines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 @cindex completion, file name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 This section describes low-level subroutines for completing a file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 name. For other completion functions, see @ref{Completion}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 @defun file-name-all-completions partial-filename directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 This function returns a list of all possible completions for a file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 whose name starts with @var{partial-filename} in directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 @var{directory}. The order of the completions is the order of the files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 in the directory, which is unpredictable and conveys no useful
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 The argument @var{partial-filename} must be a file name containing no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 directory part and no slash. The current buffer's default directory is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 prepended to @var{directory}, if @var{directory} is not absolute.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 In the following example, suppose that the current default directory,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 @file{~rms/lewis}, has five files whose names begin with @samp{f}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 @file{foo}, @file{file~}, @file{file.c}, @file{file.c.~1~}, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 @file{file.c.~2~}.@refill
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 (file-name-all-completions "f" "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 @result{} ("foo" "file~" "file.c.~2~"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 "file.c.~1~" "file.c")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 (file-name-all-completions "fo" "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 @result{} ("foo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 @defun file-name-completion filename directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 This function completes the file name @var{filename} in directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 @var{directory}. It returns the longest prefix common to all file names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 in directory @var{directory} that start with @var{filename}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 If only one match exists and @var{filename} matches it exactly, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 function returns @code{t}. The function returns @code{nil} if directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 @var{directory} contains no name starting with @var{filename}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 In the following example, suppose that the current default directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 has five files whose names begin with @samp{f}: @file{foo},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 @file{file~}, @file{file.c}, @file{file.c.~1~}, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 @file{file.c.~2~}.@refill
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 (file-name-completion "fi" "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 @result{} "file"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 (file-name-completion "file.c.~1" "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 @result{} "file.c.~1~"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 (file-name-completion "file.c.~1~" "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 @result{} t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 (file-name-completion "file.c.~3" "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 @defopt completion-ignored-extensions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 @code{file-name-completion} usually ignores file names that end in any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 string in this list. It does not ignore them when all the possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 completions end in one of these suffixes or when a buffer showing all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 possible completions is displayed.@refill
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 A typical value might look like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 completion-ignored-extensions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 @result{} (".o" ".elc" "~" ".dvi")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 @node Contents of Directories
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 @section Contents of Directories
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 @cindex directory-oriented functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 @cindex file names in directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 A directory is a kind of file that contains other files entered under
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 various names. Directories are a feature of the file system.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 XEmacs can list the names of the files in a directory as a Lisp list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 or display the names in a buffer using the @code{ls} shell command. In
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 the latter case, it can optionally display information about each file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 depending on the value of switches passed to the @code{ls} command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 @defun directory-files directory &optional full-name match-regexp nosort files-only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 This function returns a list of the names of the files in the directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 @var{directory}. By default, the list is in alphabetical order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 If @var{full-name} is non-@code{nil}, the function returns the files'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 absolute file names. Otherwise, it returns just the names relative to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 the specified directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 If @var{match-regexp} is non-@code{nil}, this function returns only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 those file names that contain that regular expression---the other file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 names are discarded from the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 If @var{nosort} is non-@code{nil}, @code{directory-files} does not sort
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 the list, so you get the file names in no particular order. Use this if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 you want the utmost possible speed and don't care what order the files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 are processed in. If the order of processing is visible to the user,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 then the user will probably be happier if you do sort the names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 @c XEmacs feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 If @var{files-only} is the symbol @code{t}, then only the ``files'' in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 the directory will be returned; subdirectories will be excluded. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 @var{files-only} is not @code{nil} and not @code{t}, then only the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 subdirectories will be returned. Otherwise, if @var{files-only} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 @code{nil} (the default) then both files and subdirectories will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 (directory-files "~lewis")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 @result{} ("#foo#" "#foo.el#" "." ".."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 "dired-mods.el" "files.texi"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 "files.texi.~1~")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 An error is signaled if @var{directory} is not the name of a directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 that can be read.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 @ignore @c Not in XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 @defun file-name-all-versions file dirname
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 This function returns a list of all versions of the file named
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 @var{file} in directory @var{dirname}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 @end ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 @defun insert-directory file switches &optional wildcard full-directory-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 This function inserts (in the current buffer) a directory listing for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 directory @var{file}, formatted with @code{ls} according to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 @var{switches}. It leaves point after the inserted text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 The argument @var{file} may be either a directory name or a file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 specification including wildcard characters. If @var{wildcard} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 non-@code{nil}, that means treat @var{file} as a file specification with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 wildcards.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 If @var{full-directory-p} is non-@code{nil}, that means @var{file} is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 directory and switches do not contain @samp{-d}, so that the listing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 should show the full contents of the directory. (The @samp{-d} option
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 to @code{ls} says to describe a directory itself rather than its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 contents.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 This function works by running a directory listing program whose name is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 in the variable @code{insert-directory-program}. If @var{wildcard} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 non-@code{nil}, it also runs the shell specified by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 @code{shell-file-name}, to expand the wildcards.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 @defvar insert-directory-program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 This variable's value is the program to run to generate a directory listing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 for the function @code{insert-directory}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 @node Create/Delete Dirs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 @section Creating and Deleting Directories
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 @c Emacs 19 features
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 Most XEmacs Lisp file-manipulation functions get errors when used on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 files that are directories. For example, you cannot delete a directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 with @code{delete-file}. These special functions exist to create and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 delete directories.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 @deffn Command make-directory dirname &optional parents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 This function creates a directory named @var{dirname}. Interactively,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 the default choice of directory to create is the current default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 directory for file names. That is useful when you have visited a file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 in a nonexistent directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 @c XEmacs feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 Non-interactively, optional argument @var{parents} says whether to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 create parent directories if they don't exist. (Interactively, this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 always happens.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 @deffn Command delete-directory dirname
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 This function deletes the directory named @var{dirname}. The function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 @code{delete-file} does not work for files that are directories; you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 must use @code{delete-directory} in that case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 @node Magic File Names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 @section Making Certain File Names ``Magic''
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 @cindex magic file names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 You can implement special handling for certain file names. This is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 called making those names @dfn{magic}. You must supply a regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 expression to define the class of names (all those that match the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 regular expression), plus a handler that implements all the primitive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 XEmacs file operations for file names that do match.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 The variable @code{file-name-handler-alist} holds a list of handlers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 together with regular expressions that determine when to apply each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 handler. Each element has this form:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 (@var{regexp} . @var{handler})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 All the XEmacs primitives for file access and file name transformation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 check the given file name against @code{file-name-handler-alist}. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 the file name matches @var{regexp}, the primitives handle that file by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 calling @var{handler}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 The first argument given to @var{handler} is the name of the primitive;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 the remaining arguments are the arguments that were passed to that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 operation. (The first of these arguments is typically the file name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 itself.) For example, if you do this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 (file-exists-p @var{filename})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 and @var{filename} has handler @var{handler}, then @var{handler} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 called like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 (funcall @var{handler} 'file-exists-p @var{filename})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 Here are the operations that a magic file name handler gets to handle:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 @code{add-name-to-file}, @code{copy-file}, @code{delete-directory},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 @code{delete-file},@*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 @code{diff-latest-backup-file},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 @code{directory-file-name},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 @code{directory-files},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 @code{dired-compress-file}, @code{dired-uncache},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 @code{expand-file-name},@*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 @code{file-accessible-directory-p},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 @code{file-attributes}, @code{file-directory-p},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 @code{file-executable-p}, @code{file-exists-p}, @code{file-local-copy},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 @code{file-modes}, @code{file-name-all-completions},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 @code{file-name-as-directory}, @code{file-name-completion},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 @code{file-name-directory}, @code{file-name-nondirectory},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 @code{file-name-sans-versions}, @code{file-newer-than-file-p},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 @code{file-readable-p}, @code{file-regular-p}, @code{file-symlink-p},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 @code{file-truename}, @code{file-writable-p},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 @code{get-file-buffer},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 @code{insert-directory},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 @code{insert-file-contents}, @code{load}, @code{make-directory},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 @code{make-symbolic-link}, @code{rename-file}, @code{set-file-modes},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 @code{set-visited-file-modtime}, @code{unhandled-file-name-directory},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 @code{verify-visited-file-modtime}, @code{write-region}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 Handlers for @code{insert-file-contents} typically need to clear the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 buffer's modified flag, with @code{(set-buffer-modified-p nil)}, if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 @var{visit} argument is non-@code{nil}. This also has the effect of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 unlocking the buffer if it is locked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 The handler function must handle all of the above operations, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 possibly others to be added in the future. It need not implement all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 these operations itself---when it has nothing special to do for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 certain operation, it can reinvoke the primitive, to handle the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 operation ``in the usual way''. It should always reinvoke the primitive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 for an operation it does not recognize. Here's one way to do this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 (defun my-file-handler (operation &rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 ;; @r{First check for the specific operations}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 ;; @r{that we have special handling for.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 (cond ((eq operation 'insert-file-contents) @dots{})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 ((eq operation 'write-region) @dots{})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 @dots{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 ;; @r{Handle any operation we don't know about.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 (t (let ((inhibit-file-name-handlers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 (cons 'my-file-handler
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 (and (eq inhibit-file-name-operation operation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 inhibit-file-name-handlers)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 (inhibit-file-name-operation operation))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 (apply operation args)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 When a handler function decides to call the ordinary Emacs primitive for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 the operation at hand, it needs to prevent the primitive from calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 the same handler once again, thus leading to an infinite recursion. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 example above shows how to do this, with the variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 @code{inhibit-file-name-handlers} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 @code{inhibit-file-name-operation}. Be careful to use them exactly as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 shown above; the details are crucial for proper behavior in the case of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 multiple handlers, and for operations that have two file names that may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 each have handlers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 @defvar inhibit-file-name-handlers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 This variable holds a list of handlers whose use is presently inhibited
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 for a certain operation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 @defvar inhibit-file-name-operation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 The operation for which certain handlers are presently inhibited.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 @defun find-file-name-handler file operation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 This function returns the handler function for file name @var{file}, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 @code{nil} if there is none. The argument @var{operation} should be the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 operation to be performed on the file---the value you will pass to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 handler as its first argument when you call it. The operation is needed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 for comparison with @code{inhibit-file-name-operation}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 @defun file-local-copy filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 This function copies file @var{filename} to an ordinary non-magic file,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 if it isn't one already.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 If @var{filename} specifies a ``magic'' file name, which programs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 outside Emacs cannot directly read or write, this copies the contents to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 an ordinary file and returns that file's name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 If @var{filename} is an ordinary file name, not magic, then this function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 does nothing and returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 @defun unhandled-file-name-directory filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 This function returns the name of a directory that is not magic.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 It uses the directory part of @var{filename} if that is not magic.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 Otherwise, it asks the handler what to do.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 This is useful for running a subprocess; every subprocess must have a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 non-magic directory to serve as its current directory, and this function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 is a good way to come up with one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 @node Partial Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 @section Partial Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 @cindex partial files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 * Intro to Partial Files::
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 * Creating a Partial File::
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 * Detached Partial Files::
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 @node Intro to Partial Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 @subsection Intro to Partial Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 A @dfn{partial file} is a section of a buffer (called the @dfn{master
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 buffer}) that is placed in its own buffer and treated as its own file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 Changes made to the partial file are not reflected in the master buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 until the partial file is ``saved'' using the standard buffer save
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 commands. Partial files can be ``reverted'' (from the master buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 just like normal files. When a file part is active on a master buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 that section of the master buffer is marked as read-only. Two file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 parts on the same master buffer are not allowed to overlap. Partial
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 file buffers are indicated by the words @samp{File Part} in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 modeline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 The master buffer knows about all the partial files that are active on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 it, and thus killing or reverting the master buffer will be handled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 properly. When the master buffer is saved, if there are any unsaved
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 partial files active on it then the user will be given the opportunity
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 to first save these files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 When a partial file buffer is first modified, the master buffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 automatically marked as modified so that saving the master buffer will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 work correctly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 @node Creating a Partial File
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 @subsection Creating a Partial File
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 @defun make-file-part &optional start end name buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 Make a file part on buffer @var{buffer} out of the region. Call it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 @var{name}. This command creates a new buffer containing the contents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 of the region and marks the buffer as referring to the specified buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 called the @dfn{master buffer}. When the file-part buffer is saved, its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 changes are integrated back into the master buffer. When the master
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 buffer is deleted, all file parts are deleted with it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 When called from a function, expects four arguments, @var{start},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 @var{end}, @var{name}, and @var{buffer}, all of which are optional and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 default to the beginning of @var{buffer}, the end of @var{buffer}, a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 name generated from @var{buffer} name, and the current buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 respectively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 @node Detached Partial Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 @subsection Detached Partial Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 Every partial file has an extent in the master buffer associated with it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 (called the @dfn{master extent}), marking where in the master buffer the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 partial file begins and ends. If the text in master buffer that is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 contained by the extent is deleted, then the extent becomes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 ``detached'', meaning that it no longer refers to a specific region of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 the master buffer. This can happen either when the text is deleted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 directly or when the master buffer is reverted. Neither of these should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 happen in normal usage because the master buffer should generally not be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 edited directly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 Before doing any operation that references a partial file's master
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 extent, XEmacs checks to make sure that the extent is not detached. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 this is the case, XEmacs warns the user of this and the master extent is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 deleted out of the master buffer, disconnecting the file part. The file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 part's filename is cleared and thus must be explicitly specified if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 detached file part is to be saved.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 @node Format Conversion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 @section File Format Conversion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 @cindex file format conversion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 @cindex encoding file formats
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 @cindex decoding file formats
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 The variable @code{format-alist} defines a list of @dfn{file formats},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 which describe textual representations used in files for the data (text,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 text-properties, and possibly other information) in an Emacs buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 Emacs performs format conversion if appropriate when reading and writing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 @defvar format-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 This list contains one format definition for each defined file format.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 @cindex format definition
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 Each format definition is a list of this form:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 (@var{name} @var{doc-string} @var{regexp} @var{from-fn} @var{to-fn} @var{modify} @var{mode-fn})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 Here is what the elements in a format definition mean:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 @table @var
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 @item name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 The name of this format.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 @item doc-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 A documentation string for the format.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 @item regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 A regular expression which is used to recognize files represented in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 this format.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 @item from-fn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 A function to call to decode data in this format (to convert file data into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 the usual Emacs data representation).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 The @var{from-fn} is called with two args, @var{begin} and @var{end},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 which specify the part of the buffer it should convert. It should convert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 the text by editing it in place. Since this can change the length of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 text, @var{from-fn} should return the modified end position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 One responsibility of @var{from-fn} is to make sure that the beginning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 of the file no longer matches @var{regexp}. Otherwise it is likely to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 get called again.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 @item to-fn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 A function to call to encode data in this format (to convert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 the usual Emacs data representation into this format).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 The @var{to-fn} is called with two args, @var{begin} and @var{end},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 which specify the part of the buffer it should convert. There are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 two ways it can do the conversion:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 By editing the buffer in place. In this case, @var{to-fn} should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 return the end-position of the range of text, as modified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 By returning a list of annotations. This is a list of elements of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 form @code{(@var{position} . @var{string})}, where @var{position} is an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 integer specifying the relative position in the text to be written, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 @var{string} is the annotation to add there. The list must be sorted in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 order of position when @var{to-fn} returns it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 When @code{write-region} actually writes the text from the buffer to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 file, it intermixes the specified annotations at the corresponding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 positions. All this takes place without modifying the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 @item modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 A flag, @code{t} if the encoding function modifies the buffer, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 @code{nil} if it works by returning a list of annotations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 @item mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 A mode function to call after visiting a file converted from this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 format.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 @end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 The function @code{insert-file-contents} automatically recognizes file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 formats when it reads the specified file. It checks the text of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 beginning of the file against the regular expressions of the format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 definitions, and if it finds a match, it calls the decoding function for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 that format. Then it checks all the known formats over again.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 It keeps checking them until none of them is applicable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 Visiting a file, with @code{find-file-noselect} or the commands that use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 it, performs conversion likewise (because it calls
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 @code{insert-file-contents}); it also calls the mode function for each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 format that it decodes. It stores a list of the format names in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 buffer-local variable @code{buffer-file-format}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 @defvar buffer-file-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 This variable states the format of the visited file. More precisely,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 this is a list of the file format names that were decoded in the course
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 of visiting the current buffer's file. It is always local in all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 When @code{write-region} writes data into a file, it first calls the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 encoding functions for the formats listed in @code{buffer-file-format},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 in the order of appearance in the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 @defun format-write-file file format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 This command writes the current buffer contents into the file @var{file}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 in format @var{format}, and makes that format the default for future
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 saves of the buffer. The argument @var{format} is a list of format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 @defun format-find-file file format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 This command finds the file @var{file}, converting it according to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 format @var{format}. It also makes @var{format} the default if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 buffer is saved later.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 The argument @var{format} is a list of format names. If @var{format} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 @code{nil}, no conversion takes place. Interactively, typing just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 @key{RET} for @var{format} specifies @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 @defun format-insert-file file format &optional beg end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 This command inserts the contents of file @var{file}, converting it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 according to format @var{format}. If @var{beg} and @var{end} are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 non-@code{nil}, they specify which part of the file to read, as in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 @code{insert-file-contents} (@pxref{Reading from Files}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 The return value is like what @code{insert-file-contents} returns: a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 list of the absolute file name and the length of the data inserted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 (after conversion).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 The argument @var{format} is a list of format names. If @var{format} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 @code{nil}, no conversion takes place. Interactively, typing just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 @key{RET} for @var{format} specifies @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 @defun format-find-file file format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 This command finds the file @var{file}, converting it according to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 format @var{format}. It also makes @var{format} the default if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 buffer is saved later.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 The argument @var{format} is a list of format names. If @var{format} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 @code{nil}, no conversion takes place. Interactively, typing just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 @key{RET} for @var{format} specifies @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 @defun format-insert-file file format &optional beg end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 This command inserts the contents of file @var{file}, converting it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 according to format @var{format}. If @var{beg} and @var{end} are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 non-@code{nil}, they specify which part of the file to read,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 as in @code{insert-file-contents} (@pxref{Reading from Files}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 The return value is like what @code{insert-file-contents} returns: a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 list of the absolute file name and the length of the data inserted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 (after conversion).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 The argument @var{format} is a list of format names. If @var{format} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 @code{nil}, no conversion takes place. Interactively, typing just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 @key{RET} for @var{format} specifies @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 @defvar auto-save-file-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 This variable specifies the format to use for auto-saving. Its value is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 a list of format names, just like the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 @code{buffer-file-format}; but it is used instead of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 @code{buffer-file-format} for writing auto-save files. This variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 is always local in all buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 @node Files and MS-DOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 @section Files and MS-DOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 @cindex MS-DOS file types
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 @cindex file types on MS-DOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 @cindex text files and binary files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 @cindex binary files and text files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 Emacs on MS-DOS makes a distinction between text files and binary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 files. This is necessary because ordinary text files on MS-DOS use a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 two character sequence between lines: carriage-return and linefeed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 (@sc{crlf}). Emacs expects just a newline character (a linefeed) between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 lines. When Emacs reads or writes a text file on MS-DOS, it needs to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 convert the line separators. This means it needs to know which files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 are text files and which are binary. It makes this decision when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 visiting a file, and records the decision in the variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 @code{buffer-file-type} for use when the file is saved.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 @xref{MS-DOS Subprocesses}, for a related feature for subprocesses.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 @defvar buffer-file-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 This variable, automatically local in each buffer, records the file type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 of the buffer's visited file. The value is @code{nil} for text,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 @code{t} for binary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 @defun find-buffer-file-type filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 This function determines whether file @var{filename} is a text file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 or a binary file. It returns @code{nil} for text, @code{t} for binary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 @defopt file-name-buffer-file-type-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 This variable holds an alist for distinguishing text files from binary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 files. Each element has the form (@var{regexp} . @var{type}), where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 @var{regexp} is matched against the file name, and @var{type} may be is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 @code{nil} for text, @code{t} for binary, or a function to call to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 compute which. If it is a function, then it is called with a single
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 argument (the file name) and should return @code{t} or @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 @defopt default-buffer-file-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 This variable specifies the default file type for files whose names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 don't indicate anything in particular. Its value should be @code{nil}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 for text, or @code{t} for binary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 @deffn Command find-file-text filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 Like @code{find-file}, but treat the file as text regardless of its name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 @deffn Command find-file-binary filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 Like @code{find-file}, but treat the file as binary regardless of its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 @end deffn