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