]> code.delx.au - gnu-emacs/blob - doc/lispref/files.texi
Merge from emacs-24; up to 2014-03-28T01:39:30Z!rgm@gnu.org
[gnu-emacs] / doc / lispref / files.texi
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990-1995, 1998-1999, 2001-2014 Free Software
4 @c Foundation, Inc.
5 @c See the file elisp.texi for copying conditions.
6 @node Files
7 @chapter Files
8
9 This chapter describes the Emacs Lisp functions and variables to
10 find, create, view, save, and otherwise work with files and
11 directories. A few other file-related functions are described in
12 @ref{Buffers}, and those related to backups and auto-saving are
13 described in @ref{Backups and Auto-Saving}.
14
15 Many of the file functions take one or more arguments that are file
16 names. A file name is a string. Most of these functions expand file
17 name arguments using the function @code{expand-file-name}, so that
18 @file{~} is handled correctly, as are relative file names (including
19 @file{../}). @xref{File Name Expansion}.
20
21 In addition, certain @dfn{magic} file names are handled specially.
22 For example, when a remote file name is specified, Emacs accesses the
23 file over the network via an appropriate protocol. @xref{Remote
24 Files,, Remote Files, emacs, The GNU Emacs Manual}. This handling is
25 done at a very low level, so you may assume that all the functions
26 described in this chapter accept magic file names as file name
27 arguments, except where noted. @xref{Magic File Names}, for details.
28
29 When file I/O functions signal Lisp errors, they usually use the
30 condition @code{file-error} (@pxref{Handling Errors}). The error
31 message is in most cases obtained from the operating system, according
32 to locale @code{system-messages-locale}, and decoded using coding system
33 @code{locale-coding-system} (@pxref{Locales}).
34
35 @menu
36 * Visiting Files:: Reading files into Emacs buffers for editing.
37 * Saving Buffers:: Writing changed buffers back into files.
38 * Reading from Files:: Reading files into buffers without visiting.
39 * Writing to Files:: Writing new files from parts of buffers.
40 * File Locks:: Locking and unlocking files, to prevent
41 simultaneous editing by two people.
42 * Information about Files:: Testing existence, accessibility, size of files.
43 * Changing Files:: Renaming files, changing permissions, etc.
44 * File Names:: Decomposing and expanding file names.
45 * Contents of Directories:: Getting a list of the files in a directory.
46 * Create/Delete Dirs:: Creating and Deleting Directories.
47 * Magic File Names:: Special handling for certain file names.
48 * Format Conversion:: Conversion to and from various file formats.
49 @end menu
50
51 @node Visiting Files
52 @section Visiting Files
53 @cindex finding files
54 @cindex visiting files
55
56 Visiting a file means reading a file into a buffer. Once this is
57 done, we say that the buffer is @dfn{visiting} that file, and call the
58 file ``the visited file'' of the buffer.
59
60 A file and a buffer are two different things. A file is information
61 recorded permanently in the computer (unless you delete it). A
62 buffer, on the other hand, is information inside of Emacs that will
63 vanish at the end of the editing session (or when you kill the
64 buffer). When a buffer is visiting a file, it contains information
65 copied from the file. The copy in the buffer is what you modify with
66 editing commands. Changes to the buffer do not change the file; to
67 make the changes permanent, you must @dfn{save} the buffer, which
68 means copying the altered buffer contents back into the file.
69
70 Despite the distinction between files and buffers, people often
71 refer to a file when they mean a buffer and vice-versa. Indeed, we
72 say, ``I am editing a file'', rather than, ``I am editing a buffer
73 that I will soon save as a file of the same name''. Humans do not
74 usually need to make the distinction explicit. When dealing with a
75 computer program, however, it is good to keep the distinction in mind.
76
77 @menu
78 * Visiting Functions:: The usual interface functions for visiting.
79 * Subroutines of Visiting:: Lower-level subroutines that they use.
80 @end menu
81
82 @node Visiting Functions
83 @subsection Functions for Visiting Files
84
85 This section describes the functions normally used to visit files.
86 For historical reasons, these functions have names starting with
87 @samp{find-} rather than @samp{visit-}. @xref{Buffer File Name}, for
88 functions and variables that access the visited file name of a buffer or
89 that find an existing buffer by its visited file name.
90
91 In a Lisp program, if you want to look at the contents of a file but
92 not alter it, the fastest way is to use @code{insert-file-contents} in a
93 temporary buffer. Visiting the file is not necessary and takes longer.
94 @xref{Reading from Files}.
95
96 @deffn Command find-file filename &optional wildcards
97 This command selects a buffer visiting the file @var{filename},
98 using an existing buffer if there is one, and otherwise creating a
99 new buffer and reading the file into it. It also returns that buffer.
100
101 Aside from some technical details, the body of the @code{find-file}
102 function is basically equivalent to:
103
104 @smallexample
105 (switch-to-buffer (find-file-noselect filename nil nil wildcards))
106 @end smallexample
107
108 @noindent
109 (See @code{switch-to-buffer} in @ref{Switching Buffers}.)
110
111 If @var{wildcards} is non-@code{nil}, which is always true in an
112 interactive call, then @code{find-file} expands wildcard characters in
113 @var{filename} and visits all the matching files.
114
115 When @code{find-file} is called interactively, it prompts for
116 @var{filename} in the minibuffer.
117 @end deffn
118
119 @deffn Command find-file-literally filename
120 This command visits @var{filename}, like @code{find-file} does, but it
121 does not perform any format conversions (@pxref{Format Conversion}),
122 character code conversions (@pxref{Coding Systems}), or end-of-line
123 conversions (@pxref{Coding System Basics, End of line conversion}).
124 The buffer visiting the file is made unibyte, and its major mode is
125 Fundamental mode, regardless of the file name. File local variable
126 specifications in the file (@pxref{File Local Variables}) are
127 ignored, and automatic decompression and adding a newline at the end
128 of the file due to @code{require-final-newline} (@pxref{Saving
129 Buffers, require-final-newline}) are also disabled.
130
131 Note that if Emacs already has a buffer visiting the same file
132 non-literally, it will not visit the same file literally, but instead
133 just switch to the existing buffer. If you want to be sure of
134 accessing a file's contents literally, you should create a temporary
135 buffer and then read the file contents into it using
136 @code{insert-file-contents-literally} (@pxref{Reading from Files}).
137 @end deffn
138
139 @defun find-file-noselect filename &optional nowarn rawfile wildcards
140 This function is the guts of all the file-visiting functions. It
141 returns a buffer visiting the file @var{filename}. You may make the
142 buffer current or display it in a window if you wish, but this
143 function does not do so.
144
145 The function returns an existing buffer if there is one; otherwise it
146 creates a new buffer and reads the file into it. When
147 @code{find-file-noselect} uses an existing buffer, it first verifies
148 that the file has not changed since it was last visited or saved in
149 that buffer. If the file has changed, this function asks the user
150 whether to reread the changed file. If the user says @samp{yes}, any
151 edits previously made in the buffer are lost.
152
153 Reading the file involves decoding the file's contents (@pxref{Coding
154 Systems}), including end-of-line conversion, and format conversion
155 (@pxref{Format Conversion}). If @var{wildcards} is non-@code{nil},
156 then @code{find-file-noselect} expands wildcard characters in
157 @var{filename} and visits all the matching files.
158
159 This function displays warning or advisory messages in various peculiar
160 cases, unless the optional argument @var{nowarn} is non-@code{nil}. For
161 example, if it needs to create a buffer, and there is no file named
162 @var{filename}, it displays the message @samp{(New file)} in the echo
163 area, and leaves the buffer empty.
164
165 The @code{find-file-noselect} function normally calls
166 @code{after-find-file} after reading the file (@pxref{Subroutines of
167 Visiting}). That function sets the buffer major mode, parses local
168 variables, warns the user if there exists an auto-save file more recent
169 than the file just visited, and finishes by running the functions in
170 @code{find-file-hook}.
171
172 If the optional argument @var{rawfile} is non-@code{nil}, then
173 @code{after-find-file} is not called, and the
174 @code{find-file-not-found-functions} are not run in case of failure.
175 What's more, a non-@code{nil} @var{rawfile} value suppresses coding
176 system conversion and format conversion.
177
178 The @code{find-file-noselect} function usually returns the buffer that
179 is visiting the file @var{filename}. But, if wildcards are actually
180 used and expanded, it returns a list of buffers that are visiting the
181 various files.
182
183 @example
184 @group
185 (find-file-noselect "/etc/fstab")
186 @result{} #<buffer fstab>
187 @end group
188 @end example
189 @end defun
190
191 @deffn Command find-file-other-window filename &optional wildcards
192 This command selects a buffer visiting the file @var{filename}, but
193 does so in a window other than the selected window. It may use
194 another existing window or split a window; see @ref{Switching
195 Buffers}.
196
197 When this command is called interactively, it prompts for
198 @var{filename}.
199 @end deffn
200
201 @deffn Command find-file-read-only filename &optional wildcards
202 This command selects a buffer visiting the file @var{filename}, like
203 @code{find-file}, but it marks the buffer as read-only. @xref{Read Only
204 Buffers}, for related functions and variables.
205
206 When this command is called interactively, it prompts for
207 @var{filename}.
208 @end deffn
209
210 @defopt find-file-wildcards
211 If this variable is non-@code{nil}, then the various @code{find-file}
212 commands check for wildcard characters and visit all the files that
213 match them (when invoked interactively or when their @var{wildcards}
214 argument is non-@code{nil}). If this option is @code{nil}, then
215 the @code{find-file} commands ignore their @var{wildcards} argument
216 and never treat wildcard characters specially.
217 @end defopt
218
219 @defopt find-file-hook
220 The value of this variable is a list of functions to be called after a
221 file is visited. The file's local-variables specification (if any) will
222 have been processed before the hooks are run. The buffer visiting the
223 file is current when the hook functions are run.
224
225 This variable is a normal hook. @xref{Hooks}.
226 @end defopt
227
228 @defvar find-file-not-found-functions
229 The value of this variable is a list of functions to be called when
230 @code{find-file} or @code{find-file-noselect} is passed a nonexistent
231 file name. @code{find-file-noselect} calls these functions as soon as
232 it detects a nonexistent file. It calls them in the order of the list,
233 until one of them returns non-@code{nil}. @code{buffer-file-name} is
234 already set up.
235
236 This is not a normal hook because the values of the functions are
237 used, and in many cases only some of the functions are called.
238 @end defvar
239
240 @defvar find-file-literally
241 This buffer-local variable, if set to a non-@code{nil} value, makes
242 @code{save-buffer} behave as if the buffer were visiting its file
243 literally, i.e., without conversions of any kind. The command
244 @code{find-file-literally} sets this variable's local value, but other
245 equivalent functions and commands can do that as well, e.g., to avoid
246 automatic addition of a newline at the end of the file. This variable
247 is permanent local, so it is unaffected by changes of major modes.
248 @end defvar
249
250 @node Subroutines of Visiting
251 @subsection Subroutines of Visiting
252
253 The @code{find-file-noselect} function uses two important subroutines
254 which are sometimes useful in user Lisp code: @code{create-file-buffer}
255 and @code{after-find-file}. This section explains how to use them.
256
257 @defun create-file-buffer filename
258 This function creates a suitably named buffer for visiting
259 @var{filename}, and returns it. It uses @var{filename} (sans directory)
260 as the name if that name is free; otherwise, it appends a string such as
261 @samp{<2>} to get an unused name. See also @ref{Creating Buffers}.
262
263 @strong{Please note:} @code{create-file-buffer} does @emph{not}
264 associate the new buffer with a file and does not select the buffer.
265 It also does not use the default major mode.
266
267 @example
268 @group
269 (create-file-buffer "foo")
270 @result{} #<buffer foo>
271 @end group
272 @group
273 (create-file-buffer "foo")
274 @result{} #<buffer foo<2>>
275 @end group
276 @group
277 (create-file-buffer "foo")
278 @result{} #<buffer foo<3>>
279 @end group
280 @end example
281
282 This function is used by @code{find-file-noselect}.
283 It uses @code{generate-new-buffer} (@pxref{Creating Buffers}).
284 @end defun
285
286 @defun after-find-file &optional error warn noauto after-find-file-from-revert-buffer nomodes
287 This function sets the buffer major mode, and parses local variables
288 (@pxref{Auto Major Mode}). It is called by @code{find-file-noselect}
289 and by the default revert function (@pxref{Reverting}).
290
291 @cindex new file message
292 @cindex file open error
293 If reading the file got an error because the file does not exist, but
294 its directory does exist, the caller should pass a non-@code{nil} value
295 for @var{error}. In that case, @code{after-find-file} issues a warning:
296 @samp{(New file)}. For more serious errors, the caller should usually not
297 call @code{after-find-file}.
298
299 If @var{warn} is non-@code{nil}, then this function issues a warning
300 if an auto-save file exists and is more recent than the visited file.
301
302 If @var{noauto} is non-@code{nil}, that says not to enable or disable
303 Auto-Save mode. The mode remains enabled if it was enabled before.
304
305 If @var{after-find-file-from-revert-buffer} is non-@code{nil}, that
306 means this call was from @code{revert-buffer}. This has no direct
307 effect, but some mode functions and hook functions check the value
308 of this variable.
309
310 If @var{nomodes} is non-@code{nil}, that means don't alter the buffer's
311 major mode, don't process local variables specifications in the file,
312 and don't run @code{find-file-hook}. This feature is used by
313 @code{revert-buffer} in some cases.
314
315 The last thing @code{after-find-file} does is call all the functions
316 in the list @code{find-file-hook}.
317 @end defun
318
319 @node Saving Buffers
320 @section Saving Buffers
321 @cindex saving buffers
322
323 When you edit a file in Emacs, you are actually working on a buffer
324 that is visiting that file---that is, the contents of the file are
325 copied into the buffer and the copy is what you edit. Changes to the
326 buffer do not change the file until you @dfn{save} the buffer, which
327 means copying the contents of the buffer into the file.
328
329 @deffn Command save-buffer &optional backup-option
330 This function saves the contents of the current buffer in its visited
331 file if the buffer has been modified since it was last visited or saved.
332 Otherwise it does nothing.
333
334 @code{save-buffer} is responsible for making backup files. Normally,
335 @var{backup-option} is @code{nil}, and @code{save-buffer} makes a backup
336 file only if this is the first save since visiting the file. Other
337 values for @var{backup-option} request the making of backup files in
338 other circumstances:
339
340 @itemize @bullet
341 @item
342 With an argument of 4 or 64, reflecting 1 or 3 @kbd{C-u}'s, the
343 @code{save-buffer} function marks this version of the file to be
344 backed up when the buffer is next saved.
345
346 @item
347 With an argument of 16 or 64, reflecting 2 or 3 @kbd{C-u}'s, the
348 @code{save-buffer} function unconditionally backs up the previous
349 version of the file before saving it.
350
351 @item
352 With an argument of 0, unconditionally do @emph{not} make any backup file.
353 @end itemize
354 @end deffn
355
356 @deffn Command save-some-buffers &optional save-silently-p pred
357 @anchor{Definition of save-some-buffers}
358 This command saves some modified file-visiting buffers. Normally it
359 asks the user about each buffer. But if @var{save-silently-p} is
360 non-@code{nil}, it saves all the file-visiting buffers without querying
361 the user.
362
363 The optional @var{pred} argument controls which buffers to ask about
364 (or to save silently if @var{save-silently-p} is non-@code{nil}).
365 If it is @code{nil}, that means to ask only about file-visiting buffers.
366 If it is @code{t}, that means also offer to save certain other non-file
367 buffers---those that have a non-@code{nil} buffer-local value of
368 @code{buffer-offer-save} (@pxref{Killing Buffers}). A user who says
369 @samp{yes} to saving a non-file buffer is asked to specify the file
370 name to use. The @code{save-buffers-kill-emacs} function passes the
371 value @code{t} for @var{pred}.
372
373 If @var{pred} is neither @code{t} nor @code{nil}, then it should be
374 a function of no arguments. It will be called in each buffer to decide
375 whether to offer to save that buffer. If it returns a non-@code{nil}
376 value in a certain buffer, that means do offer to save that buffer.
377 @end deffn
378
379 @deffn Command write-file filename &optional confirm
380 @anchor{Definition of write-file}
381 This function writes the current buffer into file @var{filename}, makes
382 the buffer visit that file, and marks it not modified. Then it renames
383 the buffer based on @var{filename}, appending a string like @samp{<2>}
384 if necessary to make a unique buffer name. It does most of this work by
385 calling @code{set-visited-file-name} (@pxref{Buffer File Name}) and
386 @code{save-buffer}.
387
388 If @var{confirm} is non-@code{nil}, that means to ask for confirmation
389 before overwriting an existing file. Interactively, confirmation is
390 required, unless the user supplies a prefix argument.
391
392 If @var{filename} is an existing directory, or a symbolic link to one,
393 @code{write-file} uses the name of the visited file, in directory
394 @var{filename}. If the buffer is not visiting a file, it uses the
395 buffer name instead.
396 @end deffn
397
398 Saving a buffer runs several hooks. It also performs format
399 conversion (@pxref{Format Conversion}).
400
401 @defvar write-file-functions
402 The value of this variable is a list of functions to be called before
403 writing out a buffer to its visited file. If one of them returns
404 non-@code{nil}, the file is considered already written and the rest of
405 the functions are not called, nor is the usual code for writing the file
406 executed.
407
408 If a function in @code{write-file-functions} returns non-@code{nil}, it
409 is responsible for making a backup file (if that is appropriate).
410 To do so, execute the following code:
411
412 @example
413 (or buffer-backed-up (backup-buffer))
414 @end example
415
416 You might wish to save the file modes value returned by
417 @code{backup-buffer} and use that (if non-@code{nil}) to set the mode
418 bits of the file that you write. This is what @code{save-buffer}
419 normally does. @xref{Making Backups,, Making Backup Files}.
420
421 The hook functions in @code{write-file-functions} are also responsible
422 for encoding the data (if desired): they must choose a suitable coding
423 system and end-of-line conversion (@pxref{Lisp and Coding Systems}),
424 perform the encoding (@pxref{Explicit Encoding}), and set
425 @code{last-coding-system-used} to the coding system that was used
426 (@pxref{Encoding and I/O}).
427
428 If you set this hook locally in a buffer, it is assumed to be
429 associated with the file or the way the contents of the buffer were
430 obtained. Thus the variable is marked as a permanent local, so that
431 changing the major mode does not alter a buffer-local value. On the
432 other hand, calling @code{set-visited-file-name} will reset it.
433 If this is not what you want, you might like to use
434 @code{write-contents-functions} instead.
435
436 Even though this is not a normal hook, you can use @code{add-hook} and
437 @code{remove-hook} to manipulate the list. @xref{Hooks}.
438 @end defvar
439
440 @c Emacs 19 feature
441 @defvar write-contents-functions
442 This works just like @code{write-file-functions}, but it is intended
443 for hooks that pertain to the buffer's contents, not to the particular
444 visited file or its location. Such hooks are usually set up by major
445 modes, as buffer-local bindings for this variable. This variable
446 automatically becomes buffer-local whenever it is set; switching to a
447 new major mode always resets this variable, but calling
448 @code{set-visited-file-name} does not.
449
450 If any of the functions in this hook returns non-@code{nil}, the file
451 is considered already written and the rest are not called and neither
452 are the functions in @code{write-file-functions}.
453 @end defvar
454
455 @defopt before-save-hook
456 This normal hook runs before a buffer is saved in its visited file,
457 regardless of whether that is done normally or by one of the hooks
458 described above. For instance, the @file{copyright.el} program uses
459 this hook to make sure the file you are saving has the current year in
460 its copyright notice.
461 @end defopt
462
463 @c Emacs 19 feature
464 @defopt after-save-hook
465 This normal hook runs after a buffer has been saved in its visited file.
466 One use of this hook is in Fast Lock mode; it uses this hook to save the
467 highlighting information in a cache file.
468 @end defopt
469
470 @defopt file-precious-flag
471 If this variable is non-@code{nil}, then @code{save-buffer} protects
472 against I/O errors while saving by writing the new file to a temporary
473 name instead of the name it is supposed to have, and then renaming it to
474 the intended name after it is clear there are no errors. This procedure
475 prevents problems such as a lack of disk space from resulting in an
476 invalid file.
477
478 As a side effect, backups are necessarily made by copying. @xref{Rename
479 or Copy}. Yet, at the same time, saving a precious file always breaks
480 all hard links between the file you save and other file names.
481
482 Some modes give this variable a non-@code{nil} buffer-local value
483 in particular buffers.
484 @end defopt
485
486 @defopt require-final-newline
487 This variable determines whether files may be written out that do
488 @emph{not} end with a newline. If the value of the variable is
489 @code{t}, then @code{save-buffer} silently adds a newline at the end
490 of the buffer whenever it does not already end in one. If the value
491 is @code{visit}, Emacs adds a missing newline just after it visits the
492 file. If the value is @code{visit-save}, Emacs adds a missing newline
493 both on visiting and on saving. For any other non-@code{nil} value,
494 @code{save-buffer} asks the user whether to add a newline each time
495 the case arises.
496
497 If the value of the variable is @code{nil}, then @code{save-buffer}
498 doesn't add newlines at all. @code{nil} is the default value, but a few
499 major modes set it to @code{t} in particular buffers.
500 @end defopt
501
502 See also the function @code{set-visited-file-name} (@pxref{Buffer File
503 Name}).
504
505 @node Reading from Files
506 @section Reading from Files
507 @cindex reading from files
508
509 To copy the contents of a file into a buffer, use the function
510 @code{insert-file-contents}. (Don't use the command
511 @code{insert-file} in a Lisp program, as that sets the mark.)
512
513 @defun insert-file-contents filename &optional visit beg end replace
514 This function inserts the contents of file @var{filename} into the
515 current buffer after point. It returns a list of the absolute file name
516 and the length of the data inserted. An error is signaled if
517 @var{filename} is not the name of a file that can be read.
518
519 This function checks the file contents against the defined file
520 formats, and converts the file contents if appropriate and also calls
521 the functions in the list @code{after-insert-file-functions}.
522 @xref{Format Conversion}. Normally, one of the functions in the
523 @code{after-insert-file-functions} list determines the coding system
524 (@pxref{Coding Systems}) used for decoding the file's contents,
525 including end-of-line conversion. However, if the file contains null
526 bytes, it is by default visited without any code conversions.
527 @xref{Lisp and Coding Systems, inhibit-null-byte-detection}.
528
529 If @var{visit} is non-@code{nil}, this function additionally marks the
530 buffer as unmodified and sets up various fields in the buffer so that it
531 is visiting the file @var{filename}: these include the buffer's visited
532 file name and its last save file modtime. This feature is used by
533 @code{find-file-noselect} and you probably should not use it yourself.
534
535 If @var{beg} and @var{end} are non-@code{nil}, they should be numbers
536 that are byte offsets specifying the portion of the file to insert.
537 In this case, @var{visit} must be @code{nil}. For example,
538
539 @example
540 (insert-file-contents filename nil 0 500)
541 @end example
542
543 @noindent
544 inserts the first 500 characters of a file.
545
546 If the argument @var{replace} is non-@code{nil}, it means to replace the
547 contents of the buffer (actually, just the accessible portion) with the
548 contents of the file. This is better than simply deleting the buffer
549 contents and inserting the whole file, because (1) it preserves some
550 marker positions and (2) it puts less data in the undo list.
551
552 It is possible to read a special file (such as a FIFO or an I/O device)
553 with @code{insert-file-contents}, as long as @var{replace} and
554 @var{visit} are @code{nil}.
555 @end defun
556
557 @defun insert-file-contents-literally filename &optional visit beg end replace
558 This function works like @code{insert-file-contents} except that it
559 does not run @code{find-file-hook}, and does not do format decoding,
560 character code conversion, automatic uncompression, and so on.
561 @end defun
562
563 If you want to pass a file name to another process so that another
564 program can read the file, use the function @code{file-local-copy}; see
565 @ref{Magic File Names}.
566
567 @node Writing to Files
568 @section Writing to Files
569 @cindex writing to files
570
571 You can write the contents of a buffer, or part of a buffer, directly
572 to a file on disk using the @code{append-to-file} and
573 @code{write-region} functions. Don't use these functions to write to
574 files that are being visited; that could cause confusion in the
575 mechanisms for visiting.
576
577 @deffn Command append-to-file start end filename
578 This function appends the contents of the region delimited by
579 @var{start} and @var{end} in the current buffer to the end of file
580 @var{filename}. If that file does not exist, it is created. This
581 function returns @code{nil}.
582
583 An error is signaled if @var{filename} specifies a nonwritable file,
584 or a nonexistent file in a directory where files cannot be created.
585
586 When called from Lisp, this function is completely equivalent to:
587
588 @example
589 (write-region start end filename t)
590 @end example
591 @end deffn
592
593 @deffn Command write-region start end filename &optional append visit lockname mustbenew
594 This function writes the region delimited by @var{start} and @var{end}
595 in the current buffer into the file specified by @var{filename}.
596
597 If @var{start} is @code{nil}, then the command writes the entire buffer
598 contents (@emph{not} just the accessible portion) to the file and
599 ignores @var{end}.
600
601 @c Emacs 19 feature
602 If @var{start} is a string, then @code{write-region} writes or appends
603 that string, rather than text from the buffer. @var{end} is ignored in
604 this case.
605
606 If @var{append} is non-@code{nil}, then the specified text is appended
607 to the existing file contents (if any). If @var{append} is a
608 number, @code{write-region} seeks to that byte offset from the start
609 of the file and writes the data from there.
610
611 If @var{mustbenew} is non-@code{nil}, then @code{write-region} asks
612 for confirmation if @var{filename} names an existing file. If
613 @var{mustbenew} is the symbol @code{excl}, then @code{write-region}
614 does not ask for confirmation, but instead it signals an error
615 @code{file-already-exists} if the file already exists.
616
617 The test for an existing file, when @var{mustbenew} is @code{excl}, uses
618 a special system feature. At least for files on a local disk, there is
619 no chance that some other program could create a file of the same name
620 before Emacs does, without Emacs's noticing.
621
622 If @var{visit} is @code{t}, then Emacs establishes an association
623 between the buffer and the file: the buffer is then visiting that file.
624 It also sets the last file modification time for the current buffer to
625 @var{filename}'s modtime, and marks the buffer as not modified. This
626 feature is used by @code{save-buffer}, but you probably should not use
627 it yourself.
628
629 @c Emacs 19 feature
630 If @var{visit} is a string, it specifies the file name to visit. This
631 way, you can write the data to one file (@var{filename}) while recording
632 the buffer as visiting another file (@var{visit}). The argument
633 @var{visit} is used in the echo area message and also for file locking;
634 @var{visit} is stored in @code{buffer-file-name}. This feature is used
635 to implement @code{file-precious-flag}; don't use it yourself unless you
636 really know what you're doing.
637
638 The optional argument @var{lockname}, if non-@code{nil}, specifies the
639 file name to use for purposes of locking and unlocking, overriding
640 @var{filename} and @var{visit} for that purpose.
641
642 The function @code{write-region} converts the data which it writes to
643 the appropriate file formats specified by @code{buffer-file-format}
644 and also calls the functions in the list
645 @code{write-region-annotate-functions}.
646 @xref{Format Conversion}.
647
648 Normally, @code{write-region} displays the message @samp{Wrote
649 @var{filename}} in the echo area. If @var{visit} is neither @code{t}
650 nor @code{nil} nor a string, then this message is inhibited. This
651 feature is useful for programs that use files for internal purposes,
652 files that the user does not need to know about.
653 @end deffn
654
655 @defmac with-temp-file file body@dots{}
656 @anchor{Definition of with-temp-file}
657 The @code{with-temp-file} macro evaluates the @var{body} forms with a
658 temporary buffer as the current buffer; then, at the end, it writes the
659 buffer contents into file @var{file}. It kills the temporary buffer
660 when finished, restoring the buffer that was current before the
661 @code{with-temp-file} form. Then it returns the value of the last form
662 in @var{body}.
663
664 The current buffer is restored even in case of an abnormal exit via
665 @code{throw} or error (@pxref{Nonlocal Exits}).
666
667 See also @code{with-temp-buffer} in @ref{Definition of
668 with-temp-buffer,, The Current Buffer}.
669 @end defmac
670
671 @node File Locks
672 @section File Locks
673 @cindex file locks
674 @cindex lock file
675
676 When two users edit the same file at the same time, they are likely
677 to interfere with each other. Emacs tries to prevent this situation
678 from arising by recording a @dfn{file lock} when a file is being
679 modified.
680 Emacs can then detect the first attempt to modify a buffer visiting a
681 file that is locked by another Emacs job, and ask the user what to do.
682 The file lock is really a file, a symbolic link with a special name,
683 stored in the same directory as the file you are editing. (On file
684 systems that do not support symbolic links, a regular file is used.)
685
686 When you access files using NFS, there may be a small probability that
687 you and another user will both lock the same file ``simultaneously''.
688 If this happens, it is possible for the two users to make changes
689 simultaneously, but Emacs will still warn the user who saves second.
690 Also, the detection of modification of a buffer visiting a file changed
691 on disk catches some cases of simultaneous editing; see
692 @ref{Modification Time}.
693
694 @defun file-locked-p filename
695 This function returns @code{nil} if the file @var{filename} is not
696 locked. It returns @code{t} if it is locked by this Emacs process, and
697 it returns the name of the user who has locked it if it is locked by
698 some other job.
699
700 @example
701 @group
702 (file-locked-p "foo")
703 @result{} nil
704 @end group
705 @end example
706 @end defun
707
708 @defun lock-buffer &optional filename
709 This function locks the file @var{filename}, if the current buffer is
710 modified. The argument @var{filename} defaults to the current buffer's
711 visited file. Nothing is done if the current buffer is not visiting a
712 file, or is not modified, or if the option @code{create-lockfiles} is
713 @code{nil}.
714 @end defun
715
716 @defun unlock-buffer
717 This function unlocks the file being visited in the current buffer,
718 if the buffer is modified. If the buffer is not modified, then
719 the file should not be locked, so this function does nothing. It also
720 does nothing if the current buffer is not visiting a file, or is not locked.
721 @end defun
722
723 @defopt create-lockfiles
724 If this variable is @code{nil}, Emacs does not lock files.
725 @end defopt
726
727 @defun ask-user-about-lock file other-user
728 This function is called when the user tries to modify @var{file}, but it
729 is locked by another user named @var{other-user}. The default
730 definition of this function asks the user to say what to do. The value
731 this function returns determines what Emacs does next:
732
733 @itemize @bullet
734 @item
735 A value of @code{t} says to grab the lock on the file. Then
736 this user may edit the file and @var{other-user} loses the lock.
737
738 @item
739 A value of @code{nil} says to ignore the lock and let this
740 user edit the file anyway.
741
742 @item
743 @kindex file-locked
744 This function may instead signal a @code{file-locked} error, in which
745 case the change that the user was about to make does not take place.
746
747 The error message for this error looks like this:
748
749 @example
750 @error{} File is locked: @var{file} @var{other-user}
751 @end example
752
753 @noindent
754 where @code{file} is the name of the file and @var{other-user} is the
755 name of the user who has locked the file.
756 @end itemize
757
758 If you wish, you can replace the @code{ask-user-about-lock} function
759 with your own version that makes the decision in another way.
760 @end defun
761
762 @node Information about Files
763 @section Information about Files
764 @cindex file, information about
765
766 This section describes the functions for retrieving various types of
767 information about files (or directories or symbolic links), such as
768 whether a file is readable or writable, and its size. These functions
769 all take arguments which are file names. Except where noted, these
770 arguments need to specify existing files, or an error is signaled.
771
772 @cindex file names, trailing whitespace
773 @cindex trailing blanks in file names
774 Be careful with file names that end in spaces. On some filesystems
775 (notably, MS-Windows), trailing whitespace characters in file names
776 are silently and automatically ignored.
777
778 @menu
779 * Testing Accessibility:: Is a given file readable? Writable?
780 * Kinds of Files:: Is it a directory? A symbolic link?
781 * Truenames:: Eliminating symbolic links from a file name.
782 * File Attributes:: File sizes, modification times, etc.
783 * Extended Attributes:: Extended file attributes for access control.
784 * Locating Files:: How to find a file in standard places.
785 @end menu
786
787 @node Testing Accessibility
788 @subsection Testing Accessibility
789 @cindex accessibility of a file
790 @cindex file accessibility
791
792 These functions test for permission to access a file for reading,
793 writing, or execution. Unless explicitly stated otherwise, they
794 recursively follow symbolic links for their file name arguments, at
795 all levels (at the level of the file itself and at all levels of
796 parent directories).
797
798 On some operating systems, more complex sets of access permissions
799 can be specified, via mechanisms such as Access Control Lists (ACLs).
800 @xref{Extended Attributes}, for how to query and set those
801 permissions.
802
803 @defun file-exists-p filename
804 This function returns @code{t} if a file named @var{filename} appears
805 to exist. This does not mean you can necessarily read the file, only
806 that you can find out its attributes. (On Unix and GNU/Linux, this is
807 true if the file exists and you have execute permission on the
808 containing directories, regardless of the permissions of the file
809 itself.)
810
811 If the file does not exist, or if access control policies prevent you
812 from finding its attributes, this function returns @code{nil}.
813
814 Directories are files, so @code{file-exists-p} returns @code{t} when
815 given a directory name. However, symbolic links are treated
816 specially; @code{file-exists-p} returns @code{t} for a symbolic link
817 name only if the target file exists.
818 @end defun
819
820 @defun file-readable-p filename
821 This function returns @code{t} if a file named @var{filename} exists
822 and you can read it. It returns @code{nil} otherwise.
823 @end defun
824
825 @defun file-executable-p filename
826 This function returns @code{t} if a file named @var{filename} exists and
827 you can execute it. It returns @code{nil} otherwise. On Unix and
828 GNU/Linux, if the file is a directory, execute permission means you can
829 check the existence and attributes of files inside the directory, and
830 open those files if their modes permit.
831 @end defun
832
833 @defun file-writable-p filename
834 This function returns @code{t} if the file @var{filename} can be written
835 or created by you, and @code{nil} otherwise. A file is writable if the
836 file exists and you can write it. It is creatable if it does not exist,
837 but the specified directory does exist and you can write in that
838 directory.
839
840 In the example below, @file{foo} is not writable because the parent
841 directory does not exist, even though the user could create such a
842 directory.
843
844 @example
845 @group
846 (file-writable-p "~/no-such-dir/foo")
847 @result{} nil
848 @end group
849 @end example
850 @end defun
851
852 @defun file-accessible-directory-p dirname
853 This function returns @code{t} if you have permission to open existing
854 files in the directory whose name as a file is @var{dirname};
855 otherwise (or if there is no such directory), it returns @code{nil}.
856 The value of @var{dirname} may be either a directory name (such as
857 @file{/foo/}) or the file name of a file which is a directory
858 (such as @file{/foo}, without the final slash).
859
860 For example, from the following we deduce that any attempt to read a
861 file in @file{/foo/} will give an error:
862
863 @example
864 (file-accessible-directory-p "/foo")
865 @result{} nil
866 @end example
867 @end defun
868
869 @defun access-file filename string
870 This function opens file @var{filename} for reading, then closes it and
871 returns @code{nil}. However, if the open fails, it signals an error
872 using @var{string} as the error message text.
873 @end defun
874
875 @defun file-ownership-preserved-p filename &optional group
876 This function returns @code{t} if deleting the file @var{filename} and
877 then creating it anew would keep the file's owner unchanged. It also
878 returns @code{t} for nonexistent files.
879
880 If the optional argument @var{group} is non-@code{nil}, this function
881 also checks that the file's group would be unchanged.
882
883 If @var{filename} is a symbolic link, then, unlike the other functions
884 discussed here, @code{file-ownership-preserved-p} does @emph{not}
885 replace @var{filename} with its target. However, it does recursively
886 follow symbolic links at all levels of parent directories.
887 @end defun
888
889 @defun file-modes filename
890 @cindex mode bits
891 @cindex file permissions
892 @cindex permissions, file
893 @cindex file modes
894 This function returns the @dfn{mode bits} of @var{filename}---an
895 integer summarizing its read, write, and execution permissions.
896 Symbolic links in @var{filename} are recursively followed at all
897 levels. If the file does not exist, the return value is @code{nil}.
898
899 @xref{File permissions,,, coreutils, The @sc{gnu} @code{Coreutils}
900 Manual}, for a description of mode bits. For example, if the
901 low-order bit is 1, the file is executable by all users; if the
902 second-lowest-order bit is 1, the file is writable by all users; etc.
903 The highest possible value is 4095 (7777 octal), meaning that everyone
904 has read, write, and execute permission, the @acronym{SUID} bit is set
905 for both others and group, and the sticky bit is set.
906
907 @xref{Changing Files}, for the @code{set-file-modes} function, which
908 can be used to set these permissions.
909
910 @example
911 @group
912 (file-modes "~/junk/diffs")
913 @result{} 492 ; @r{Decimal integer.}
914 @end group
915 @group
916 (format "%o" 492)
917 @result{} "754" ; @r{Convert to octal.}
918 @end group
919
920 @group
921 (set-file-modes "~/junk/diffs" #o666)
922 @result{} nil
923 @end group
924
925 @group
926 $ ls -l diffs
927 -rw-rw-rw- 1 lewis lewis 3063 Oct 30 16:00 diffs
928 @end group
929 @end example
930
931 @cindex MS-DOS and file modes
932 @cindex file modes and MS-DOS
933 @strong{MS-DOS note:} On MS-DOS, there is no such thing as an
934 ``executable'' file mode bit. So @code{file-modes} considers a file
935 executable if its name ends in one of the standard executable
936 extensions, such as @file{.com}, @file{.bat}, @file{.exe}, and some
937 others. Files that begin with the Unix-standard @samp{#!} signature,
938 such as shell and Perl scripts, are also considered executable.
939 Directories are also reported as executable, for compatibility with
940 Unix. These conventions are also followed by @code{file-attributes}
941 (@pxref{File Attributes}).
942 @end defun
943
944 @node Kinds of Files
945 @subsection Distinguishing Kinds of Files
946
947 This section describes how to distinguish various kinds of files, such
948 as directories, symbolic links, and ordinary files.
949
950 @defun file-symlink-p filename
951 @cindex file symbolic links
952 If the file @var{filename} is a symbolic link, the
953 @code{file-symlink-p} function returns its (non-recursive) link target
954 as a string. (The link target string is not necessarily the full
955 absolute file name of the target; determining the full file name that
956 the link points to is nontrivial, see below.) If the leading
957 directories of @var{filename} include symbolic links, this function
958 recursively follows them.
959
960 If the file @var{filename} is not a symbolic link, or does not exist,
961 @code{file-symlink-p} returns @code{nil}.
962
963 Here are a few examples of using this function:
964
965 @example
966 @group
967 (file-symlink-p "not-a-symlink")
968 @result{} nil
969 @end group
970 @group
971 (file-symlink-p "sym-link")
972 @result{} "not-a-symlink"
973 @end group
974 @group
975 (file-symlink-p "sym-link2")
976 @result{} "sym-link"
977 @end group
978 @group
979 (file-symlink-p "/bin")
980 @result{} "/pub/bin"
981 @end group
982 @end example
983
984 Note that in the third example, the function returned @file{sym-link},
985 but did not proceed to resolve it, although that file is itself a
986 symbolic link. This is what we meant by ``non-recursive'' above---the
987 process of following the symbolic links does not recurse if the link
988 target is itself a link.
989
990 The string that this function returns is what is recorded in the
991 symbolic link; it may or may not include any leading directories.
992 This function does @emph{not} expand the link target to produce a
993 fully-qualified file name, and in particular does not use the leading
994 directories, if any, of the @var{filename} argument if the link target
995 is not an absolute file name. Here's an example:
996
997 @example
998 @group
999 (file-symlink-p "/foo/bar/baz")
1000 @result{} "some-file"
1001 @end group
1002 @end example
1003
1004 @noindent
1005 Here, although @file{/foo/bar/baz} was given as a fully-qualified file
1006 name, the result is not, and in fact does not have any leading
1007 directories at all. And since @file{some-file} might itself be a
1008 symbolic link, you cannot simply prepend leading directories to it,
1009 nor even naively use @code{expand-file-name} (@pxref{File Name
1010 Expansion}) to produce its absolute file name.
1011
1012 For this reason, this function is seldom useful if you need to
1013 determine more than just the fact that a file is or isn't a symbolic
1014 link. If you actually need the file name of the link target, use
1015 @code{file-chase-links} or @code{file-truename}, described in
1016 @ref{Truenames}.
1017 @end defun
1018
1019 The next two functions recursively follow symbolic links at
1020 all levels for @var{filename}.
1021
1022 @defun file-directory-p filename
1023 This function returns @code{t} if @var{filename} is the name of an
1024 existing directory, @code{nil} otherwise.
1025
1026 @example
1027 @group
1028 (file-directory-p "~rms")
1029 @result{} t
1030 @end group
1031 @group
1032 (file-directory-p "~rms/lewis/files.texi")
1033 @result{} nil
1034 @end group
1035 @group
1036 (file-directory-p "~rms/lewis/no-such-file")
1037 @result{} nil
1038 @end group
1039 @group
1040 (file-directory-p "$HOME")
1041 @result{} nil
1042 @end group
1043 @group
1044 (file-directory-p
1045 (substitute-in-file-name "$HOME"))
1046 @result{} t
1047 @end group
1048 @end example
1049 @end defun
1050
1051 @defun file-regular-p filename
1052 This function returns @code{t} if the file @var{filename} exists and is
1053 a regular file (not a directory, named pipe, terminal, or
1054 other I/O device).
1055 @end defun
1056
1057 @node Truenames
1058 @subsection Truenames
1059 @cindex truename (of file)
1060
1061 The @dfn{truename} of a file is the name that you get by following
1062 symbolic links at all levels until none remain, then simplifying away
1063 @samp{.}@: and @samp{..}@: appearing as name components. This results
1064 in a sort of canonical name for the file. A file does not always have a
1065 unique truename; the number of distinct truenames a file has is equal to
1066 the number of hard links to the file. However, truenames are useful
1067 because they eliminate symbolic links as a cause of name variation.
1068
1069 @defun file-truename filename
1070 This function returns the truename of the file @var{filename}. If the
1071 argument is not an absolute file name, this function first expands it
1072 against @code{default-directory}.
1073
1074 This function does not expand environment variables. Only
1075 @code{substitute-in-file-name} does that. @xref{Definition of
1076 substitute-in-file-name}.
1077
1078 If you may need to follow symbolic links preceding @samp{..}@:
1079 appearing as a name component, call @code{file-truename} without prior
1080 direct or indirect calls to @code{expand-file-name}. Otherwise, the
1081 file name component immediately preceding @samp{..} will be
1082 ``simplified away'' before @code{file-truename} is called. To
1083 eliminate the need for a call to @code{expand-file-name},
1084 @code{file-truename} handles @samp{~} in the same way that
1085 @code{expand-file-name} does. @xref{File Name Expansion,, Functions
1086 that Expand Filenames}.
1087 @end defun
1088
1089 @defun file-chase-links filename &optional limit
1090 This function follows symbolic links, starting with @var{filename},
1091 until it finds a file name which is not the name of a symbolic link.
1092 Then it returns that file name. This function does @emph{not} follow
1093 symbolic links at the level of parent directories.
1094
1095 If you specify a number for @var{limit}, then after chasing through
1096 that many links, the function just returns what it has even if that is
1097 still a symbolic link.
1098 @end defun
1099
1100 To illustrate the difference between @code{file-chase-links} and
1101 @code{file-truename}, suppose that @file{/usr/foo} is a symbolic link to
1102 the directory @file{/home/foo}, and @file{/home/foo/hello} is an
1103 ordinary file (or at least, not a symbolic link) or nonexistent. Then
1104 we would have:
1105
1106 @example
1107 (file-chase-links "/usr/foo/hello")
1108 ;; @r{This does not follow the links in the parent directories.}
1109 @result{} "/usr/foo/hello"
1110 (file-truename "/usr/foo/hello")
1111 ;; @r{Assuming that @file{/home} is not a symbolic link.}
1112 @result{} "/home/foo/hello"
1113 @end example
1114
1115 @defun file-equal-p file1 file2
1116 This function returns @code{t} if the files @var{file1} and
1117 @var{file2} name the same file. This is similar to comparing their
1118 truenames, except that remote file names are also handled in an
1119 appropriate manner. If @var{file1} or @var{file2} does not exist, the
1120 return value is unspecified.
1121 @end defun
1122
1123 @defun file-in-directory-p file dir
1124 This function returns @code{t} if @var{file} is a file in directory
1125 @var{dir}, or in a subdirectory of @var{dir}. It also returns
1126 @code{t} if @var{file} and @var{dir} are the same directory. It
1127 compares the truenames of the two directories. If @var{dir} does not
1128 name an existing directory, the return value is @code{nil}.
1129 @end defun
1130
1131 @node File Attributes
1132 @subsection File Attributes
1133 @cindex file attributes
1134
1135 This section describes the functions for getting detailed
1136 information about a file, including the owner and group numbers, the
1137 number of names, the inode number, the size, and the times of access
1138 and modification.
1139
1140 @defun file-newer-than-file-p filename1 filename2
1141 @cindex file age
1142 @cindex file modification time
1143 This function returns @code{t} if the file @var{filename1} is
1144 newer than file @var{filename2}. If @var{filename1} does not
1145 exist, it returns @code{nil}. If @var{filename1} does exist, but
1146 @var{filename2} does not, it returns @code{t}.
1147
1148 In the following example, assume that the file @file{aug-19} was written
1149 on the 19th, @file{aug-20} was written on the 20th, and the file
1150 @file{no-file} doesn't exist at all.
1151
1152 @example
1153 @group
1154 (file-newer-than-file-p "aug-19" "aug-20")
1155 @result{} nil
1156 @end group
1157 @group
1158 (file-newer-than-file-p "aug-20" "aug-19")
1159 @result{} t
1160 @end group
1161 @group
1162 (file-newer-than-file-p "aug-19" "no-file")
1163 @result{} t
1164 @end group
1165 @group
1166 (file-newer-than-file-p "no-file" "aug-19")
1167 @result{} nil
1168 @end group
1169 @end example
1170 @end defun
1171
1172 If the @var{filename} argument to the next two functions is a
1173 symbolic link, then these function do @emph{not} replace it with its
1174 target. However, they both recursively follow symbolic links at all
1175 levels of parent directories.
1176
1177 @defun file-attributes filename &optional id-format
1178 @anchor{Definition of file-attributes}
1179 This function returns a list of attributes of file @var{filename}. If
1180 the specified file cannot be opened, it returns @code{nil}.
1181 The optional parameter @var{id-format} specifies the preferred format
1182 of attributes @acronym{UID} and @acronym{GID} (see below)---the
1183 valid values are @code{'string} and @code{'integer}. The latter is
1184 the default, but we plan to change that, so you should specify a
1185 non-@code{nil} value for @var{id-format} if you use the returned
1186 @acronym{UID} or @acronym{GID}.
1187
1188 The elements of the list, in order, are:
1189
1190 @enumerate 0
1191 @item
1192 @code{t} for a directory, a string for a symbolic link (the name
1193 linked to), or @code{nil} for a text file.
1194
1195 @c Wordy so as to prevent an overfull hbox. --rjc 15mar92
1196 @item
1197 The number of names the file has. Alternate names, also known as hard
1198 links, can be created by using the @code{add-name-to-file} function
1199 (@pxref{Changing Files}).
1200
1201 @item
1202 The file's @acronym{UID}, normally as a string. However, if it does
1203 not correspond to a named user, the value is a number.
1204
1205 @item
1206 The file's @acronym{GID}, likewise.
1207
1208 @item
1209 The time of last access, as a list of four integers @code{(@var{sec-high}
1210 @var{sec-low} @var{microsec} @var{picosec})}. (This is similar to the
1211 value of @code{current-time}; see @ref{Time of Day}.) Note that on
1212 some FAT-based filesystems, only the date of last access is recorded,
1213 so this time will always hold the midnight of the day of last access.
1214
1215 @cindex modification time of file
1216 @item
1217 The time of last modification as a list of four integers (as above).
1218 This is the last time when the file's contents were modified.
1219
1220 @item
1221 The time of last status change as a list of four integers (as above).
1222 This is the time of the last change to the file's access mode bits,
1223 its owner and group, and other information recorded in the filesystem
1224 for the file, beyond the file's contents.
1225
1226 @item
1227 The size of the file in bytes. This is floating point if the size is
1228 too large to fit in a Lisp integer.
1229
1230 @item
1231 The file's modes, as a string of ten letters or dashes,
1232 as in @samp{ls -l}.
1233
1234 @item
1235 An unspecified value, present for backward compatibility.
1236
1237 @item
1238 The file's inode number. If possible, this is an integer. If the
1239 inode number is too large to be represented as an integer in Emacs
1240 Lisp but dividing it by @math{2^{16}} yields a representable integer,
1241 then the value has the
1242 form @code{(@var{high} . @var{low})}, where @var{low} holds the low 16
1243 bits. If the inode number is too wide for even that, the value is of the form
1244 @code{(@var{high} @var{middle} . @var{low})}, where @code{high} holds
1245 the high bits, @var{middle} the middle 24 bits, and @var{low} the low
1246 16 bits.
1247
1248 @item
1249 The filesystem number of the device that the file is on. Depending on
1250 the magnitude of the value, this can be either an integer or a cons
1251 cell, in the same manner as the inode number. This element and the
1252 file's inode number together give enough information to distinguish
1253 any two files on the system---no two files can have the same values
1254 for both of these numbers.
1255 @end enumerate
1256
1257 For example, here are the file attributes for @file{files.texi}:
1258
1259 @example
1260 @group
1261 (file-attributes "files.texi" 'string)
1262 @result{} (nil 1 "lh" "users"
1263 (20614 64019 50040 152000)
1264 (20000 23 0 0)
1265 (20614 64555 902289 872000)
1266 122295 "-rw-rw-rw-"
1267 t (5888 2 . 43978)
1268 (15479 . 46724))
1269 @end group
1270 @end example
1271
1272 @noindent
1273 and here is how the result is interpreted:
1274
1275 @table @code
1276 @item nil
1277 is neither a directory nor a symbolic link.
1278
1279 @item 1
1280 has only one name (the name @file{files.texi} in the current default
1281 directory).
1282
1283 @item "lh"
1284 is owned by the user with name "lh".
1285
1286 @item "users"
1287 is in the group with name "users".
1288
1289 @item (20614 64019 50040 152000)
1290 was last accessed on October 23, 2012, at 20:12:03.050040152 UTC.
1291
1292 @item (20000 23 0 0)
1293 was last modified on July 15, 2001, at 08:53:43 UTC.
1294
1295 @item (20614 64555 902289 872000)
1296 last had its status changed on October 23, 2012, at 20:20:59.902289872 UTC.
1297
1298 @item 122295
1299 is 122295 bytes long. (It may not contain 122295 characters, though,
1300 if some of the bytes belong to multibyte sequences, and also if the
1301 end-of-line format is CR-LF.)
1302
1303 @item "-rw-rw-rw-"
1304 has a mode of read and write access for the owner, group, and world.
1305
1306 @item t
1307 is merely a placeholder; it carries no information.
1308
1309 @item (5888 2 . 43978)
1310 has an inode number of 6473924464520138.
1311
1312 @item (15479 . 46724)
1313 is on the file-system device whose number is 1014478468.
1314 @end table
1315 @end defun
1316
1317 @defun file-nlinks filename
1318 This function returns the number of names (i.e., hard links) that
1319 file @var{filename} has. If the file does not exist, this function
1320 returns @code{nil}. Note that symbolic links have no effect on this
1321 function, because they are not considered to be names of the files
1322 they link to.
1323
1324 @example
1325 @group
1326 $ ls -l foo*
1327 -rw-rw-rw- 2 rms rms 4 Aug 19 01:27 foo
1328 -rw-rw-rw- 2 rms rms 4 Aug 19 01:27 foo1
1329 @end group
1330
1331 @group
1332 (file-nlinks "foo")
1333 @result{} 2
1334 @end group
1335 @group
1336 (file-nlinks "doesnt-exist")
1337 @result{} nil
1338 @end group
1339 @end example
1340 @end defun
1341
1342 @node Extended Attributes
1343 @subsection Extended File Attributes
1344 @cindex extended file attributes
1345
1346 On some operating systems, each file can be associated with arbitrary
1347 @dfn{extended file attributes}. At present, Emacs supports querying
1348 and setting two specific sets of extended file attributes: Access
1349 Control Lists (ACLs) and SELinux contexts. These extended file
1350 attributes are used, on some systems, to impose more sophisticated
1351 file access controls than the basic ``Unix-style'' permissions
1352 discussed in the previous sections.
1353
1354 @cindex access control list
1355 @cindex ACL entries
1356 @cindex SELinux context
1357 A detailed explanation of ACLs and SELinux is beyond the scope of
1358 this manual. For our purposes, each file can be associated with an
1359 @dfn{ACL}, which specifies its properties under an ACL-based file
1360 control system, and/or an @dfn{SELinux context}, which specifies its
1361 properties under the SELinux system.
1362
1363 @defun file-acl filename
1364 This function returns the ACL for the file @var{filename}. The exact
1365 Lisp representation of the ACL is unspecified (and may change in
1366 future Emacs versions), but it is the same as what @code{set-file-acl}
1367 takes for its @var{acl} argument (@pxref{Changing Files}).
1368
1369 The underlying ACL implementation is platform-specific; on GNU/Linux
1370 and BSD, Emacs uses the POSIX ACL interface, while on MS-Windows Emacs
1371 emulates the POSIX ACL interface with native file security APIs.
1372
1373 If Emacs was not compiled with ACL support, or the file does not exist
1374 or is inaccessible, or Emacs was unable to determine the ACL entries
1375 for any other reason, then the return value is @code{nil}.
1376 @end defun
1377
1378 @defun file-selinux-context filename
1379 This function returns the SELinux context of the file @var{filename},
1380 as a list of the form @code{(@var{user} @var{role} @var{type}
1381 @var{range})}. The list elements are the context's user, role, type,
1382 and range respectively, as Lisp strings; see the SELinux documentation
1383 for details about what these actually mean. The return value has the
1384 same form as what @code{set-file-selinux-context} takes for its
1385 @var{context} argument (@pxref{Changing Files}).
1386
1387 If Emacs was not compiled with SELinux support, or the file does not
1388 exist or is inaccessible, or if the system does not support SELinux,
1389 then the return value is @code{(nil nil nil nil)}.
1390 @end defun
1391
1392 @defun file-extended-attributes filename
1393 This function returns an alist of the Emacs-recognized extended
1394 attributes of file @var{filename}. Currently, it serves as a
1395 convenient way to retrieve both the ACL and SELinux context; you can
1396 then call the function @code{set-file-extended-attributes}, with the
1397 returned alist as its second argument, to apply the same file access
1398 attributes to another file (@pxref{Changing Files}).
1399
1400 One of the elements is @code{(acl . @var{acl})}, where @var{acl} has
1401 the same form returned by @code{file-acl}.
1402
1403 Another element is @code{(selinux-context . @var{context})}, where
1404 @var{context} is the SELinux context, in the same form returned by
1405 @code{file-selinux-context}.
1406 @end defun
1407
1408 @node Locating Files
1409 @subsection Locating Files in Standard Places
1410 @cindex locate file in path
1411 @cindex find file in path
1412
1413 This section explains how to search for a file in a list of
1414 directories (a @dfn{path}), or for an executable file in the standard
1415 list of executable file directories.
1416
1417 To search for a user-specific configuration file, @xref{Standard
1418 File Names}, for the @code{locate-user-emacs-file} function.
1419
1420 @defun locate-file filename path &optional suffixes predicate
1421 This function searches for a file whose name is @var{filename} in a
1422 list of directories given by @var{path}, trying the suffixes in
1423 @var{suffixes}. If it finds such a file, it returns the file's
1424 absolute file name (@pxref{Relative File Names}); otherwise it returns
1425 @code{nil}.
1426
1427 The optional argument @var{suffixes} gives the list of file-name
1428 suffixes to append to @var{filename} when searching.
1429 @code{locate-file} tries each possible directory with each of these
1430 suffixes. If @var{suffixes} is @code{nil}, or @code{("")}, then there
1431 are no suffixes, and @var{filename} is used only as-is. Typical
1432 values of @var{suffixes} are @code{exec-suffixes} (@pxref{Subprocess
1433 Creation}), @code{load-suffixes}, @code{load-file-rep-suffixes} and
1434 the return value of the function @code{get-load-suffixes} (@pxref{Load
1435 Suffixes}).
1436
1437 Typical values for @var{path} are @code{exec-path} (@pxref{Subprocess
1438 Creation}) when looking for executable programs, or @code{load-path}
1439 (@pxref{Library Search}) when looking for Lisp files. If
1440 @var{filename} is absolute, @var{path} has no effect, but the suffixes
1441 in @var{suffixes} are still tried.
1442
1443 The optional argument @var{predicate}, if non-@code{nil}, specifies a
1444 predicate function for testing whether a candidate file is suitable.
1445 The predicate is passed the candidate file name as its single
1446 argument. If @var{predicate} is @code{nil} or omitted,
1447 @code{locate-file} uses @code{file-readable-p} as the predicate.
1448 @xref{Kinds of Files}, for other useful predicates, e.g.,
1449 @code{file-executable-p} and @code{file-directory-p}.
1450
1451 For compatibility, @var{predicate} can also be one of the symbols
1452 @code{executable}, @code{readable}, @code{writable}, @code{exists}, or
1453 a list of one or more of these symbols.
1454 @end defun
1455
1456 @defun executable-find program
1457 This function searches for the executable file of the named
1458 @var{program} and returns the absolute file name of the executable,
1459 including its file-name extensions, if any. It returns @code{nil} if
1460 the file is not found. The functions searches in all the directories
1461 in @code{exec-path}, and tries all the file-name extensions in
1462 @code{exec-suffixes} (@pxref{Subprocess Creation}).
1463 @end defun
1464
1465 @node Changing Files
1466 @section Changing File Names and Attributes
1467 @c @cindex renaming files Duplicates rename-file
1468 @cindex copying files
1469 @cindex deleting files
1470 @cindex linking files
1471 @cindex setting modes of files
1472
1473 The functions in this section rename, copy, delete, link, and set
1474 the modes (permissions) of files.
1475
1476 In the functions that have an argument @var{newname}, if a file by the
1477 name of @var{newname} already exists, the actions taken depend on the
1478 value of the argument @var{ok-if-already-exists}:
1479
1480 @itemize @bullet
1481 @item
1482 Signal a @code{file-already-exists} error if
1483 @var{ok-if-already-exists} is @code{nil}.
1484
1485 @item
1486 Request confirmation if @var{ok-if-already-exists} is a number.
1487
1488 @item
1489 Replace the old file without confirmation if @var{ok-if-already-exists}
1490 is any other value.
1491 @end itemize
1492
1493 The next four commands all recursively follow symbolic links at all
1494 levels of parent directories for their first argument, but, if that
1495 argument is itself a symbolic link, then only @code{copy-file}
1496 replaces it with its (recursive) target.
1497
1498 @deffn Command add-name-to-file oldname newname &optional ok-if-already-exists
1499 @cindex file with multiple names
1500 @cindex file hard link
1501 This function gives the file named @var{oldname} the additional name
1502 @var{newname}. This means that @var{newname} becomes a new ``hard
1503 link'' to @var{oldname}.
1504
1505 In the first part of the following example, we list two files,
1506 @file{foo} and @file{foo3}.
1507
1508 @example
1509 @group
1510 $ ls -li fo*
1511 81908 -rw-rw-rw- 1 rms rms 29 Aug 18 20:32 foo
1512 84302 -rw-rw-rw- 1 rms rms 24 Aug 18 20:31 foo3
1513 @end group
1514 @end example
1515
1516 Now we create a hard link, by calling @code{add-name-to-file}, then list
1517 the files again. This shows two names for one file, @file{foo} and
1518 @file{foo2}.
1519
1520 @example
1521 @group
1522 (add-name-to-file "foo" "foo2")
1523 @result{} nil
1524 @end group
1525
1526 @group
1527 $ ls -li fo*
1528 81908 -rw-rw-rw- 2 rms rms 29 Aug 18 20:32 foo
1529 81908 -rw-rw-rw- 2 rms rms 29 Aug 18 20:32 foo2
1530 84302 -rw-rw-rw- 1 rms rms 24 Aug 18 20:31 foo3
1531 @end group
1532 @end example
1533
1534 Finally, we evaluate the following:
1535
1536 @example
1537 (add-name-to-file "foo" "foo3" t)
1538 @end example
1539
1540 @noindent
1541 and list the files again. Now there are three names
1542 for one file: @file{foo}, @file{foo2}, and @file{foo3}. The old
1543 contents of @file{foo3} are lost.
1544
1545 @example
1546 @group
1547 (add-name-to-file "foo1" "foo3")
1548 @result{} nil
1549 @end group
1550
1551 @group
1552 $ ls -li fo*
1553 81908 -rw-rw-rw- 3 rms rms 29 Aug 18 20:32 foo
1554 81908 -rw-rw-rw- 3 rms rms 29 Aug 18 20:32 foo2
1555 81908 -rw-rw-rw- 3 rms rms 29 Aug 18 20:32 foo3
1556 @end group
1557 @end example
1558
1559 This function is meaningless on operating systems where multiple names
1560 for one file are not allowed. Some systems implement multiple names
1561 by copying the file instead.
1562
1563 See also @code{file-nlinks} in @ref{File Attributes}.
1564 @end deffn
1565
1566 @deffn Command rename-file filename newname &optional ok-if-already-exists
1567 This command renames the file @var{filename} as @var{newname}.
1568
1569 If @var{filename} has additional names aside from @var{filename}, it
1570 continues to have those names. In fact, adding the name @var{newname}
1571 with @code{add-name-to-file} and then deleting @var{filename} has the
1572 same effect as renaming, aside from momentary intermediate states.
1573 @end deffn
1574
1575 @deffn Command copy-file oldname newname &optional ok-if-exists time preserve-uid-gid preserve-extended-attributes
1576 This command copies the file @var{oldname} to @var{newname}. An
1577 error is signaled if @var{oldname} does not exist. If @var{newname}
1578 names a directory, it copies @var{oldname} into that directory,
1579 preserving its final name component.
1580
1581 If @var{time} is non-@code{nil}, then this function gives the new file
1582 the same last-modified time that the old one has. (This works on only
1583 some operating systems.) If setting the time gets an error,
1584 @code{copy-file} signals a @code{file-date-error} error. In an
1585 interactive call, a prefix argument specifies a non-@code{nil} value
1586 for @var{time}.
1587
1588 If argument @var{preserve-uid-gid} is @code{nil}, we let the operating
1589 system decide the user and group ownership of the new file (this is
1590 usually set to the user running Emacs). If @var{preserve-uid-gid} is
1591 non-@code{nil}, we attempt to copy the user and group ownership of the
1592 file. This works only on some operating systems, and only if you have
1593 the correct permissions to do so.
1594
1595 If the optional argument @var{preserve-permissions} is non-@code{nil},
1596 this function copies the file modes (or ``permissions'') of
1597 @var{oldname} to @var{newname}, as well as the Access Control List and
1598 SELinux context (if any). @xref{Information about Files}.
1599
1600 Otherwise, the file modes of @var{newname} are left unchanged if it is
1601 an existing file, and set to those of @var{oldname}, masked by the
1602 default file permissions (see @code{set-default-file-modes} below), if
1603 @var{newname} is to be newly created. The Access Control List or
1604 SELinux context are not copied over in either case.
1605 @end deffn
1606
1607 @deffn Command make-symbolic-link filename newname &optional ok-if-exists
1608 @pindex ln
1609 @kindex file-already-exists
1610 This command makes a symbolic link to @var{filename}, named
1611 @var{newname}. This is like the shell command @samp{ln -s
1612 @var{filename} @var{newname}}.
1613
1614 This function is not available on systems that don't support symbolic
1615 links.
1616 @end deffn
1617
1618 @cindex trash
1619 @vindex delete-by-moving-to-trash
1620 @deffn Command delete-file filename &optional trash
1621 @pindex rm
1622 This command deletes the file @var{filename}. If the file has
1623 multiple names, it continues to exist under the other names. If
1624 @var{filename} is a symbolic link, @code{delete-file} deletes only the
1625 symbolic link and not its target (though it does follow symbolic links
1626 at all levels of parent directories).
1627
1628 A suitable kind of @code{file-error} error is signaled if the file
1629 does not exist, or is not deletable. (On Unix and GNU/Linux, a file
1630 is deletable if its directory is writable.)
1631
1632 If the optional argument @var{trash} is non-@code{nil} and the
1633 variable @code{delete-by-moving-to-trash} is non-@code{nil}, this
1634 command moves the file into the system Trash instead of deleting it.
1635 @xref{Misc File Ops,,Miscellaneous File Operations, emacs, The GNU
1636 Emacs Manual}. When called interactively, @var{trash} is @code{t} if
1637 no prefix argument is given, and @code{nil} otherwise.
1638
1639 See also @code{delete-directory} in @ref{Create/Delete Dirs}.
1640 @end deffn
1641
1642 @cindex file permissions, setting
1643 @cindex permissions, file
1644 @cindex file modes, setting
1645 @deffn Command set-file-modes filename mode
1646 This function sets the @dfn{file mode} (or @dfn{permissions}) of
1647 @var{filename} to @var{mode}. It recursively follows symbolic links
1648 at all levels for @var{filename}.
1649
1650 If called non-interactively, @var{mode} must be an integer. Only the
1651 lowest 12 bits of the integer are used; on most systems, only the
1652 lowest 9 bits are meaningful. You can use the Lisp construct for
1653 octal numbers to enter @var{mode}. For example,
1654
1655 @example
1656 (set-file-modes #o644)
1657 @end example
1658
1659 @noindent
1660 specifies that the file should be readable and writable for its owner,
1661 readable for group members, and readable for all other users.
1662 @xref{File permissions,,, coreutils, The @sc{gnu} @code{Coreutils}
1663 Manual}, for a description of mode bit specifications.
1664
1665 Interactively, @var{mode} is read from the minibuffer using
1666 @code{read-file-modes} (see below), which lets the user type in either
1667 an integer or a string representing the permissions symbolically.
1668
1669 @xref{File Attributes}, for the function @code{file-modes}, which
1670 returns the permissions of a file.
1671 @end deffn
1672
1673 @defun set-default-file-modes mode
1674 @cindex umask
1675 This function sets the default permissions for new files created by
1676 Emacs and its subprocesses. Every file created with Emacs initially
1677 has these permissions, or a subset of them (@code{write-region} will
1678 not grant execute permissions even if the default file permissions
1679 allow execution). On Unix and GNU/Linux, the default permissions are
1680 given by the bitwise complement of the ``umask'' value.
1681
1682 The argument @var{mode} should be an integer which specifies the
1683 permissions, similar to @code{set-file-modes} above. Only the lowest
1684 9 bits are meaningful.
1685
1686 The default file permissions have no effect when you save a modified
1687 version of an existing file; saving a file preserves its existing
1688 permissions.
1689 @end defun
1690
1691 @defun default-file-modes
1692 This function returns the default file permissions, as an integer.
1693 @end defun
1694
1695 @defun read-file-modes &optional prompt base-file
1696 This function reads a set of file mode bits from the minibuffer. The
1697 first optional argument @var{prompt} specifies a non-default prompt.
1698 Second second optional argument @var{base-file} is the name of a file
1699 on whose permissions to base the mode bits that this function returns,
1700 if what the user types specifies mode bits relative to permissions of
1701 an existing file.
1702
1703 If user input represents an octal number, this function returns that
1704 number. If it is a complete symbolic specification of mode bits, as
1705 in @code{"u=rwx"}, the function converts it to the equivalent numeric
1706 value using @code{file-modes-symbolic-to-number} and returns the
1707 result. If the specification is relative, as in @code{"o+g"}, then
1708 the permissions on which the specification is based are taken from the
1709 mode bits of @var{base-file}. If @var{base-file} is omitted or
1710 @code{nil}, the function uses @code{0} as the base mode bits. The
1711 complete and relative specifications can be combined, as in
1712 @code{"u+r,g+rx,o+r,g-w"}. @xref{File permissions,,, coreutils, The
1713 @sc{gnu} @code{Coreutils} Manual}, for a description of file mode
1714 specifications.
1715 @end defun
1716
1717 @defun file-modes-symbolic-to-number modes &optional base-modes
1718 This function converts a symbolic file mode specification in
1719 @var{modes} into the equivalent integer. If the symbolic
1720 specification is based on an existing file, that file's mode bits are
1721 taken from the optional argument @var{base-modes}; if that argument is
1722 omitted or @code{nil}, it defaults to 0, i.e., no access rights at
1723 all.
1724 @end defun
1725
1726 @defun set-file-times filename &optional time
1727 This function sets the access and modification times of @var{filename}
1728 to @var{time}. The return value is @code{t} if the times are successfully
1729 set, otherwise it is @code{nil}. @var{time} defaults to the current
1730 time and must be in the format returned by @code{current-time}
1731 (@pxref{Time of Day}).
1732 @end defun
1733
1734 @defun set-file-extended-attributes filename attribute-alist
1735 This function sets the Emacs-recognized extended file attributes for
1736 @code{filename}. The second argument @var{attribute-alist} should be
1737 an alist of the same form returned by @code{file-extended-attributes}.
1738 @xref{Extended Attributes}.
1739 @end defun
1740
1741 @defun set-file-selinux-context filename context
1742 This function sets the SELinux security context for @var{filename} to
1743 @var{context}. The @var{context} argument should be a list
1744 @code{(@var{user} @var{role} @var{type} @var{range})}, where each
1745 element is a string. @xref{Extended Attributes}.
1746
1747 The function returns @code{t} if it succeeds in setting the SELinux
1748 context of @var{filename}. It returns @code{nil} if the context was
1749 not set (e.g., if SELinux is disabled, or if Emacs was compiled
1750 without SELinux support).
1751 @end defun
1752
1753 @defun set-file-acl filename acl
1754 This function sets the Access Control List for @var{filename} to
1755 @var{acl}. The @var{acl} argument should have the same form returned
1756 by the function @code{file-acl}. @xref{Extended Attributes}.
1757
1758 The function returns @code{t} if it successfully sets the ACL of
1759 @var{filename}, @code{nil} otherwise.
1760 @end defun
1761
1762 @node File Names
1763 @section File Names
1764 @cindex file names
1765
1766 Files are generally referred to by their names, in Emacs as elsewhere.
1767 File names in Emacs are represented as strings. The functions that
1768 operate on a file all expect a file name argument.
1769
1770 In addition to operating on files themselves, Emacs Lisp programs
1771 often need to operate on file names; i.e., to take them apart and to use
1772 part of a name to construct related file names. This section describes
1773 how to manipulate file names.
1774
1775 The functions in this section do not actually access files, so they
1776 can operate on file names that do not refer to an existing file or
1777 directory.
1778
1779 @findex cygwin-convert-file-name-from-windows
1780 @findex cygwin-convert-file-name-to-windows
1781 @cindex MS-Windows file-name syntax
1782 @cindex converting file names from/to MS-Windows syntax
1783 On MS-DOS and MS-Windows, these functions (like the function that
1784 actually operate on files) accept MS-DOS or MS-Windows file-name syntax,
1785 where backslashes separate the components, as well as Unix syntax; but
1786 they always return Unix syntax. This enables Lisp programs to specify
1787 file names in Unix syntax and work properly on all systems without
1788 change.@footnote{In MS-Windows versions of Emacs compiled for the Cygwin
1789 environment, you can use the functions
1790 @code{cygwin-convert-file-name-to-windows} and
1791 @code{cygwin-convert-file-name-from-windows} to convert between the
1792 two file-name syntaxes.}
1793
1794 @menu
1795 * File Name Components:: The directory part of a file name, and the rest.
1796 * Relative File Names:: Some file names are relative to a current directory.
1797 * Directory Names:: A directory's name as a directory
1798 is different from its name as a file.
1799 * File Name Expansion:: Converting relative file names to absolute ones.
1800 * Unique File Names:: Generating names for temporary files.
1801 * File Name Completion:: Finding the completions for a given file name.
1802 * Standard File Names:: If your package uses a fixed file name,
1803 how to handle various operating systems simply.
1804 @end menu
1805
1806 @node File Name Components
1807 @subsection File Name Components
1808 @cindex directory part (of file name)
1809 @cindex nondirectory part (of file name)
1810 @cindex version number (in file name)
1811
1812 The operating system groups files into directories. To specify a
1813 file, you must specify the directory and the file's name within that
1814 directory. Therefore, Emacs considers a file name as having two main
1815 parts: the @dfn{directory name} part, and the @dfn{nondirectory} part
1816 (or @dfn{file name within the directory}). Either part may be empty.
1817 Concatenating these two parts reproduces the original file name.
1818
1819 On most systems, the directory part is everything up to and including
1820 the last slash (backslash is also allowed in input on MS-DOS or
1821 MS-Windows); the nondirectory part is the rest.
1822
1823 For some purposes, the nondirectory part is further subdivided into
1824 the name proper and the @dfn{version number}. On most systems, only
1825 backup files have version numbers in their names.
1826
1827 @defun file-name-directory filename
1828 This function returns the directory part of @var{filename}, as a
1829 directory name (@pxref{Directory Names}), or @code{nil} if
1830 @var{filename} does not include a directory part.
1831
1832 On GNU and Unix systems, a string returned by this function always
1833 ends in a slash. On MS-DOS it can also end in a colon.
1834
1835 @example
1836 @group
1837 (file-name-directory "lewis/foo") ; @r{Unix example}
1838 @result{} "lewis/"
1839 @end group
1840 @group
1841 (file-name-directory "foo") ; @r{Unix example}
1842 @result{} nil
1843 @end group
1844 @end example
1845 @end defun
1846
1847 @defun file-name-nondirectory filename
1848 This function returns the nondirectory part of @var{filename}.
1849
1850 @example
1851 @group
1852 (file-name-nondirectory "lewis/foo")
1853 @result{} "foo"
1854 @end group
1855 @group
1856 (file-name-nondirectory "foo")
1857 @result{} "foo"
1858 @end group
1859 @group
1860 (file-name-nondirectory "lewis/")
1861 @result{} ""
1862 @end group
1863 @end example
1864 @end defun
1865
1866 @defun file-name-sans-versions filename &optional keep-backup-version
1867 This function returns @var{filename} with any file version numbers,
1868 backup version numbers, or trailing tildes discarded.
1869
1870 If @var{keep-backup-version} is non-@code{nil}, then true file version
1871 numbers understood as such by the file system are discarded from the
1872 return value, but backup version numbers are kept.
1873
1874 @example
1875 @group
1876 (file-name-sans-versions "~rms/foo.~1~")
1877 @result{} "~rms/foo"
1878 @end group
1879 @group
1880 (file-name-sans-versions "~rms/foo~")
1881 @result{} "~rms/foo"
1882 @end group
1883 @group
1884 (file-name-sans-versions "~rms/foo")
1885 @result{} "~rms/foo"
1886 @end group
1887 @end example
1888 @end defun
1889
1890 @defun file-name-extension filename &optional period
1891 This function returns @var{filename}'s final ``extension'', if any,
1892 after applying @code{file-name-sans-versions} to remove any
1893 version/backup part. The extension, in a file name, is the part that
1894 follows the last @samp{.} in the last name component (minus any
1895 version/backup part).
1896
1897 This function returns @code{nil} for extensionless file names such as
1898 @file{foo}. It returns @code{""} for null extensions, as in
1899 @file{foo.}. If the last component of a file name begins with a
1900 @samp{.}, that @samp{.} doesn't count as the beginning of an
1901 extension. Thus, @file{.emacs}'s ``extension'' is @code{nil}, not
1902 @samp{.emacs}.
1903
1904 If @var{period} is non-@code{nil}, then the returned value includes
1905 the period that delimits the extension, and if @var{filename} has no
1906 extension, the value is @code{""}.
1907 @end defun
1908
1909 @defun file-name-sans-extension filename
1910 This function returns @var{filename} minus its extension, if any. The
1911 version/backup part, if present, is only removed if the file has an
1912 extension. For example,
1913
1914 @example
1915 (file-name-sans-extension "foo.lose.c")
1916 @result{} "foo.lose"
1917 (file-name-sans-extension "big.hack/foo")
1918 @result{} "big.hack/foo"
1919 (file-name-sans-extension "/my/home/.emacs")
1920 @result{} "/my/home/.emacs"
1921 (file-name-sans-extension "/my/home/.emacs.el")
1922 @result{} "/my/home/.emacs"
1923 (file-name-sans-extension "~/foo.el.~3~")
1924 @result{} "~/foo"
1925 (file-name-sans-extension "~/foo.~3~")
1926 @result{} "~/foo.~3~"
1927 @end example
1928
1929 Note that the @samp{.~3~} in the two last examples is the backup part,
1930 not an extension.
1931 @end defun
1932
1933 @defun file-name-base &optional filename
1934 This function is the composition of @code{file-name-sans-extension}
1935 and @code{file-name-nondirectory}. For example,
1936
1937 @example
1938 (file-name-base "/my/home/foo.c")
1939 @result{} "foo"
1940 @end example
1941
1942 The @var{filename} argument defaults to @code{buffer-file-name}.
1943 @end defun
1944
1945 @node Relative File Names
1946 @subsection Absolute and Relative File Names
1947 @cindex absolute file name
1948 @cindex relative file name
1949
1950 All the directories in the file system form a tree starting at the
1951 root directory. A file name can specify all the directory names
1952 starting from the root of the tree; then it is called an
1953 @dfn{absolute} file name. Or it can specify the position of the file
1954 in the tree relative to a default directory; then it is called a
1955 @dfn{relative} file name. On Unix and GNU/Linux, an absolute file
1956 name starts with a @samp{/} or a @samp{~}
1957 (@pxref{abbreviate-file-name}), and a relative one does not. On
1958 MS-DOS and MS-Windows, an absolute file name starts with a slash or a
1959 backslash, or with a drive specification @samp{@var{x}:/}, where
1960 @var{x} is the @dfn{drive letter}.
1961
1962 @defun file-name-absolute-p filename
1963 This function returns @code{t} if file @var{filename} is an absolute
1964 file name, @code{nil} otherwise.
1965
1966 @example
1967 @group
1968 (file-name-absolute-p "~rms/foo")
1969 @result{} t
1970 @end group
1971 @group
1972 (file-name-absolute-p "rms/foo")
1973 @result{} nil
1974 @end group
1975 @group
1976 (file-name-absolute-p "/user/rms/foo")
1977 @result{} t
1978 @end group
1979 @end example
1980 @end defun
1981
1982 Given a possibly relative file name, you can convert it to an
1983 absolute name using @code{expand-file-name} (@pxref{File Name
1984 Expansion}). This function converts absolute file names to relative
1985 names:
1986
1987 @defun file-relative-name filename &optional directory
1988 This function tries to return a relative name that is equivalent to
1989 @var{filename}, assuming the result will be interpreted relative to
1990 @var{directory} (an absolute directory name or directory file name).
1991 If @var{directory} is omitted or @code{nil}, it defaults to the
1992 current buffer's default directory.
1993
1994 On some operating systems, an absolute file name begins with a device
1995 name. On such systems, @var{filename} has no relative equivalent based
1996 on @var{directory} if they start with two different device names. In
1997 this case, @code{file-relative-name} returns @var{filename} in absolute
1998 form.
1999
2000 @example
2001 (file-relative-name "/foo/bar" "/foo/")
2002 @result{} "bar"
2003 (file-relative-name "/foo/bar" "/hack/")
2004 @result{} "../foo/bar"
2005 @end example
2006 @end defun
2007
2008 @node Directory Names
2009 @subsection Directory Names
2010 @cindex directory name
2011 @cindex file name of directory
2012
2013 A @dfn{directory name} is the name of a directory. A directory is
2014 actually a kind of file, so it has a file name, which is related to
2015 the directory name but not identical to it. (This is not quite the
2016 same as the usual Unix terminology.) These two different names for
2017 the same entity are related by a syntactic transformation. On GNU and
2018 Unix systems, this is simple: a directory name ends in a slash,
2019 whereas the directory's name as a file lacks that slash. On MS-DOS
2020 the relationship is more complicated.
2021
2022 The difference between a directory name and its name as a file is
2023 subtle but crucial. When an Emacs variable or function argument is
2024 described as being a directory name, a file name of a directory is not
2025 acceptable. When @code{file-name-directory} returns a string, that is
2026 always a directory name.
2027
2028 The following two functions convert between directory names and file
2029 names. They do nothing special with environment variable substitutions
2030 such as @samp{$HOME}, and the constructs @samp{~}, @samp{.} and @samp{..}.
2031
2032 @defun file-name-as-directory filename
2033 This function returns a string representing @var{filename} in a form
2034 that the operating system will interpret as the name of a directory. On
2035 most systems, this means appending a slash to the string (if it does not
2036 already end in one).
2037
2038 @example
2039 @group
2040 (file-name-as-directory "~rms/lewis")
2041 @result{} "~rms/lewis/"
2042 @end group
2043 @end example
2044 @end defun
2045
2046 @defun directory-file-name dirname
2047 This function returns a string representing @var{dirname} in a form that
2048 the operating system will interpret as the name of a file. On most
2049 systems, this means removing the final slash (or backslash) from the
2050 string.
2051
2052 @example
2053 @group
2054 (directory-file-name "~lewis/")
2055 @result{} "~lewis"
2056 @end group
2057 @end example
2058 @end defun
2059
2060 Given a directory name, you can combine it with a relative file name
2061 using @code{concat}:
2062
2063 @example
2064 (concat @var{dirname} @var{relfile})
2065 @end example
2066
2067 @noindent
2068 Be sure to verify that the file name is relative before doing that.
2069 If you use an absolute file name, the results could be syntactically
2070 invalid or refer to the wrong file.
2071
2072 If you want to use a directory file name in making such a
2073 combination, you must first convert it to a directory name using
2074 @code{file-name-as-directory}:
2075
2076 @example
2077 (concat (file-name-as-directory @var{dirfile}) @var{relfile})
2078 @end example
2079
2080 @noindent
2081 Don't try concatenating a slash by hand, as in
2082
2083 @example
2084 ;;; @r{Wrong!}
2085 (concat @var{dirfile} "/" @var{relfile})
2086 @end example
2087
2088 @noindent
2089 because this is not portable. Always use
2090 @code{file-name-as-directory}.
2091
2092 To convert a directory name to its abbreviation, use this
2093 function:
2094
2095 @cindex file name abbreviations
2096 @cindex abbreviated file names
2097 @defun abbreviate-file-name filename
2098 @anchor{abbreviate-file-name}
2099 This function returns an abbreviated form of @var{filename}. It
2100 applies the abbreviations specified in @code{directory-abbrev-alist}
2101 (@pxref{File Aliases,,File Aliases, emacs, The GNU Emacs Manual}),
2102 then substitutes @samp{~} for the user's home directory if the
2103 argument names a file in the home directory or one of its
2104 subdirectories. If the home directory is a root directory, it is not
2105 replaced with @samp{~}, because this does not make the result shorter
2106 on many systems.
2107
2108 You can use this function for directory names and for file names,
2109 because it recognizes abbreviations even as part of the name.
2110 @end defun
2111
2112 @node File Name Expansion
2113 @subsection Functions that Expand Filenames
2114 @cindex expansion of file names
2115
2116 @dfn{Expanding} a file name means converting a relative file name to
2117 an absolute one. Since this is done relative to a default directory,
2118 you must specify the default directory name as well as the file name
2119 to be expanded. It also involves expanding abbreviations like
2120 @file{~/}
2121 @ifnottex
2122 (@pxref{abbreviate-file-name}),
2123 @end ifnottex
2124 and eliminating redundancies like @file{./} and @file{@var{name}/../}.
2125
2126 @defun expand-file-name filename &optional directory
2127 This function converts @var{filename} to an absolute file name. If
2128 @var{directory} is supplied, it is the default directory to start with
2129 if @var{filename} is relative. (The value of @var{directory} should
2130 itself be an absolute directory name or directory file name; it may
2131 start with @samp{~}.) Otherwise, the current buffer's value of
2132 @code{default-directory} is used. For example:
2133
2134 @example
2135 @group
2136 (expand-file-name "foo")
2137 @result{} "/xcssun/users/rms/lewis/foo"
2138 @end group
2139 @group
2140 (expand-file-name "../foo")
2141 @result{} "/xcssun/users/rms/foo"
2142 @end group
2143 @group
2144 (expand-file-name "foo" "/usr/spool/")
2145 @result{} "/usr/spool/foo"
2146 @end group
2147 @end example
2148
2149 If the part of the combined file name before the first slash is
2150 @samp{~}, it expands to the value of the @env{HOME} environment
2151 variable (usually your home directory). If the part before the first
2152 slash is @samp{~@var{user}} and if @var{user} is a valid login name,
2153 it expands to @var{user}'s home directory.
2154
2155 Filenames containing @samp{.} or @samp{..} are simplified to their
2156 canonical form:
2157
2158 @example
2159 @group
2160 (expand-file-name "bar/../foo")
2161 @result{} "/xcssun/users/rms/lewis/foo"
2162 @end group
2163 @end example
2164
2165 In some cases, a leading @samp{..} component can remain in the output:
2166
2167 @example
2168 @group
2169 (expand-file-name "../home" "/")
2170 @result{} "/../home"
2171 @end group
2172 @end example
2173
2174 @noindent
2175 This is for the sake of filesystems that have the concept of a
2176 ``superroot'' above the root directory @file{/}. On other filesystems,
2177 @file{/../} is interpreted exactly the same as @file{/}.
2178
2179 Note that @code{expand-file-name} does @emph{not} expand environment
2180 variables; only @code{substitute-in-file-name} does that:
2181
2182 @example
2183 @group
2184 (expand-file-name "$HOME/foo")
2185 @result{} "/xcssun/users/rms/lewis/$HOME/foo"
2186 @end group
2187 @end example
2188
2189 Note also that @code{expand-file-name} does not follow symbolic links
2190 at any level. This results in a difference between the way
2191 @code{file-truename} and @code{expand-file-name} treat @samp{..}.
2192 Assuming that @samp{/tmp/bar} is a symbolic link to the directory
2193 @samp{/tmp/foo/bar} we get:
2194
2195 @example
2196 @group
2197 (file-truename "/tmp/bar/../myfile")
2198 @result{} "/tmp/foo/myfile"
2199 @end group
2200 @group
2201 (expand-file-name "/tmp/bar/../myfile")
2202 @result{} "/tmp/myfile"
2203 @end group
2204 @end example
2205
2206 If you may need to follow symbolic links preceding @samp{..}, you
2207 should make sure to call @code{file-truename} without prior direct or
2208 indirect calls to @code{expand-file-name}. @xref{Truenames}.
2209 @end defun
2210
2211 @defvar default-directory
2212 The value of this buffer-local variable is the default directory for the
2213 current buffer. It should be an absolute directory name; it may start
2214 with @samp{~}. This variable is buffer-local in every buffer.
2215
2216 @code{expand-file-name} uses the default directory when its second
2217 argument is @code{nil}.
2218
2219 The value is always a string ending with a slash.
2220
2221 @example
2222 @group
2223 default-directory
2224 @result{} "/user/lewis/manual/"
2225 @end group
2226 @end example
2227 @end defvar
2228
2229 @defun substitute-in-file-name filename
2230 @anchor{Definition of substitute-in-file-name}
2231 This function replaces environment variable references in
2232 @var{filename} with the environment variable values. Following
2233 standard Unix shell syntax, @samp{$} is the prefix to substitute an
2234 environment variable value. If the input contains @samp{$$}, that is
2235 converted to @samp{$}; this gives the user a way to ``quote'' a
2236 @samp{$}.
2237
2238 The environment variable name is the series of alphanumeric characters
2239 (including underscores) that follow the @samp{$}. If the character following
2240 the @samp{$} is a @samp{@{}, then the variable name is everything up to the
2241 matching @samp{@}}.
2242
2243 Calling @code{substitute-in-file-name} on output produced by
2244 @code{substitute-in-file-name} tends to give incorrect results. For
2245 instance, use of @samp{$$} to quote a single @samp{$} won't work
2246 properly, and @samp{$} in an environment variable's value could lead
2247 to repeated substitution. Therefore, programs that call this function
2248 and put the output where it will be passed to this function need to
2249 double all @samp{$} characters to prevent subsequent incorrect
2250 results.
2251
2252 @c Wordy to avoid overfull hbox. --rjc 15mar92
2253 Here we assume that the environment variable @env{HOME}, which holds
2254 the user's home directory name, has value @samp{/xcssun/users/rms}.
2255
2256 @example
2257 @group
2258 (substitute-in-file-name "$HOME/foo")
2259 @result{} "/xcssun/users/rms/foo"
2260 @end group
2261 @end example
2262
2263 After substitution, if a @samp{~} or a @samp{/} appears immediately
2264 after another @samp{/}, the function discards everything before it (up
2265 through the immediately preceding @samp{/}).
2266
2267 @example
2268 @group
2269 (substitute-in-file-name "bar/~/foo")
2270 @result{} "~/foo"
2271 @end group
2272 @group
2273 (substitute-in-file-name "/usr/local/$HOME/foo")
2274 @result{} "/xcssun/users/rms/foo"
2275 ;; @r{@file{/usr/local/} has been discarded.}
2276 @end group
2277 @end example
2278
2279 @end defun
2280
2281 @node Unique File Names
2282 @subsection Generating Unique File Names
2283
2284 Some programs need to write temporary files. Here is the usual way to
2285 construct a name for such a file:
2286
2287 @example
2288 (make-temp-file @var{name-of-application})
2289 @end example
2290
2291 @noindent
2292 The job of @code{make-temp-file} is to prevent two different users or
2293 two different jobs from trying to use the exact same file name.
2294
2295 @defun make-temp-file prefix &optional dir-flag suffix
2296 This function creates a temporary file and returns its name. Emacs
2297 creates the temporary file's name by adding to @var{prefix} some
2298 random characters that are different in each Emacs job. The result is
2299 guaranteed to be a newly created empty file. On MS-DOS, this function
2300 can truncate the @var{string} prefix to fit into the 8+3 file-name
2301 limits. If @var{prefix} is a relative file name, it is expanded
2302 against @code{temporary-file-directory}.
2303
2304 @example
2305 @group
2306 (make-temp-file "foo")
2307 @result{} "/tmp/foo232J6v"
2308 @end group
2309 @end example
2310
2311 When @code{make-temp-file} returns, the file has been created and is
2312 empty. At that point, you should write the intended contents into the
2313 file.
2314
2315 If @var{dir-flag} is non-@code{nil}, @code{make-temp-file} creates an
2316 empty directory instead of an empty file. It returns the file name,
2317 not the directory name, of that directory. @xref{Directory Names}.
2318
2319 If @var{suffix} is non-@code{nil}, @code{make-temp-file} adds it at
2320 the end of the file name.
2321
2322 To prevent conflicts among different libraries running in the same
2323 Emacs, each Lisp program that uses @code{make-temp-file} should have its
2324 own @var{prefix}. The number added to the end of @var{prefix}
2325 distinguishes between the same application running in different Emacs
2326 jobs. Additional added characters permit a large number of distinct
2327 names even in one Emacs job.
2328 @end defun
2329
2330 The default directory for temporary files is controlled by the
2331 variable @code{temporary-file-directory}. This variable gives the user
2332 a uniform way to specify the directory for all temporary files. Some
2333 programs use @code{small-temporary-file-directory} instead, if that is
2334 non-@code{nil}. To use it, you should expand the prefix against
2335 the proper directory before calling @code{make-temp-file}.
2336
2337 @defopt temporary-file-directory
2338 @cindex @env{TMPDIR} environment variable
2339 @cindex @env{TMP} environment variable
2340 @cindex @env{TEMP} environment variable
2341 This variable specifies the directory name for creating temporary files.
2342 Its value should be a directory name (@pxref{Directory Names}), but it
2343 is good for Lisp programs to cope if the value is a directory's file
2344 name instead. Using the value as the second argument to
2345 @code{expand-file-name} is a good way to achieve that.
2346
2347 The default value is determined in a reasonable way for your operating
2348 system; it is based on the @env{TMPDIR}, @env{TMP} and @env{TEMP}
2349 environment variables, with a fall-back to a system-dependent name if
2350 none of these variables is defined.
2351
2352 Even if you do not use @code{make-temp-file} to create the temporary
2353 file, you should still use this variable to decide which directory to
2354 put the file in. However, if you expect the file to be small, you
2355 should use @code{small-temporary-file-directory} first if that is
2356 non-@code{nil}.
2357 @end defopt
2358
2359 @defopt small-temporary-file-directory
2360 This variable specifies the directory name for
2361 creating certain temporary files, which are likely to be small.
2362
2363 If you want to write a temporary file which is likely to be small, you
2364 should compute the directory like this:
2365
2366 @example
2367 (make-temp-file
2368 (expand-file-name @var{prefix}
2369 (or small-temporary-file-directory
2370 temporary-file-directory)))
2371 @end example
2372 @end defopt
2373
2374 @defun make-temp-name base-name
2375 This function generates a string that can be used as a unique file
2376 name. The name starts with @var{base-name}, and has several random
2377 characters appended to it, which are different in each Emacs job. It
2378 is like @code{make-temp-file} except that (i) it just constructs a
2379 name, and does not create a file, and (ii) @var{base-name} should be
2380 an absolute file name (on MS-DOS, this function can truncate
2381 @var{base-name} to fit into the 8+3 file-name limits).
2382
2383 @strong{Warning:} In most cases, you should not use this function; use
2384 @code{make-temp-file} instead! This function is susceptible to a race
2385 condition, between the @code{make-temp-name} call and the creation of
2386 the file, which in some cases may cause a security hole.
2387 @end defun
2388
2389 @node File Name Completion
2390 @subsection File Name Completion
2391 @cindex file name completion subroutines
2392 @cindex completion, file name
2393
2394 This section describes low-level subroutines for completing a file
2395 name. For higher level functions, see @ref{Reading File Names}.
2396
2397 @defun file-name-all-completions partial-filename directory
2398 This function returns a list of all possible completions for a file
2399 whose name starts with @var{partial-filename} in directory
2400 @var{directory}. The order of the completions is the order of the files
2401 in the directory, which is unpredictable and conveys no useful
2402 information.
2403
2404 The argument @var{partial-filename} must be a file name containing no
2405 directory part and no slash (or backslash on some systems). The current
2406 buffer's default directory is prepended to @var{directory}, if
2407 @var{directory} is not absolute.
2408
2409 In the following example, suppose that @file{~rms/lewis} is the current
2410 default directory, and has five files whose names begin with @samp{f}:
2411 @file{foo}, @file{file~}, @file{file.c}, @file{file.c.~1~}, and
2412 @file{file.c.~2~}.
2413
2414 @example
2415 @group
2416 (file-name-all-completions "f" "")
2417 @result{} ("foo" "file~" "file.c.~2~"
2418 "file.c.~1~" "file.c")
2419 @end group
2420
2421 @group
2422 (file-name-all-completions "fo" "")
2423 @result{} ("foo")
2424 @end group
2425 @end example
2426 @end defun
2427
2428 @defun file-name-completion filename directory &optional predicate
2429 This function completes the file name @var{filename} in directory
2430 @var{directory}. It returns the longest prefix common to all file names
2431 in directory @var{directory} that start with @var{filename}. If
2432 @var{predicate} is non-@code{nil} then it ignores possible completions
2433 that don't satisfy @var{predicate}, after calling that function
2434 with one argument, the expanded absolute file name.
2435
2436 If only one match exists and @var{filename} matches it exactly, the
2437 function returns @code{t}. The function returns @code{nil} if directory
2438 @var{directory} contains no name starting with @var{filename}.
2439
2440 In the following example, suppose that the current default directory
2441 has five files whose names begin with @samp{f}: @file{foo},
2442 @file{file~}, @file{file.c}, @file{file.c.~1~}, and
2443 @file{file.c.~2~}.
2444
2445 @example
2446 @group
2447 (file-name-completion "fi" "")
2448 @result{} "file"
2449 @end group
2450
2451 @group
2452 (file-name-completion "file.c.~1" "")
2453 @result{} "file.c.~1~"
2454 @end group
2455
2456 @group
2457 (file-name-completion "file.c.~1~" "")
2458 @result{} t
2459 @end group
2460
2461 @group
2462 (file-name-completion "file.c.~3" "")
2463 @result{} nil
2464 @end group
2465 @end example
2466 @end defun
2467
2468 @defopt completion-ignored-extensions
2469 @code{file-name-completion} usually ignores file names that end in any
2470 string in this list. It does not ignore them when all the possible
2471 completions end in one of these suffixes. This variable has no effect
2472 on @code{file-name-all-completions}.
2473
2474 A typical value might look like this:
2475
2476 @example
2477 @group
2478 completion-ignored-extensions
2479 @result{} (".o" ".elc" "~" ".dvi")
2480 @end group
2481 @end example
2482
2483 If an element of @code{completion-ignored-extensions} ends in a slash
2484 @samp{/}, it signals a directory. The elements which do @emph{not} end
2485 in a slash will never match a directory; thus, the above value will not
2486 filter out a directory named @file{foo.elc}.
2487 @end defopt
2488
2489 @node Standard File Names
2490 @subsection Standard File Names
2491
2492 Sometimes, an Emacs Lisp program needs to specify a standard file
2493 name for a particular use---typically, to hold configuration data
2494 specified by the current user. Usually, such files should be located
2495 in the directory specified by @code{user-emacs-directory}, which is
2496 @file{~/.emacs.d} by default (@pxref{Init File}). For example, abbrev
2497 definitions are stored by default in @file{~/.emacs.d/abbrev_defs}.
2498 The easiest way to specify such a file name is to use the function
2499 @code{locate-user-emacs-file}.
2500
2501 @defun locate-user-emacs-file base-name &optional old-name
2502 This function returns an absolute file name for an Emacs-specific
2503 configuration or data file. The argument @file{base-name} should be a
2504 relative file name. The return value is the absolute name of a file
2505 in the directory specified by @code{user-emacs-directory}; if that
2506 directory does not exist, this function creates it.
2507
2508 If the optional argument @var{old-name} is non-@code{nil}, it
2509 specifies a file in the user's home directory,
2510 @file{~/@var{old-name}}. If such a file exists, the return value is
2511 the absolute name of that file, instead of the file specified by
2512 @var{base-name}. This argument is intended to be used by Emacs
2513 packages to provide backward compatibility. For instance, prior to
2514 the introduction of @code{user-emacs-directory}, the abbrev file was
2515 located in @file{~/.abbrev_defs}. Here is the definition of
2516 @code{abbrev-file-name}:
2517
2518 @example
2519 (defcustom abbrev-file-name
2520 (locate-user-emacs-file "abbrev_defs" ".abbrev_defs")
2521 "Default name of file from which to read abbrevs."
2522 @dots{}
2523 :type 'file)
2524 @end example
2525 @end defun
2526
2527 A lower-level function for standardizing file names, which
2528 @code{locate-user-emacs-file} uses as a subroutine, is
2529 @code{convert-standard-filename}.
2530
2531 @defun convert-standard-filename filename
2532 This function returns a file name based on @var{filename}, which fits
2533 the conventions of the current operating system.
2534
2535 On GNU and Unix systems, this simply returns @var{filename}. On other
2536 operating systems, it may enforce system-specific file name
2537 conventions; for example, on MS-DOS this function performs a variety
2538 of changes to enforce MS-DOS file name limitations, including
2539 converting any leading @samp{.} to @samp{_} and truncating to three
2540 characters after the @samp{.}.
2541
2542 The recommended way to use this function is to specify a name which
2543 fits the conventions of GNU and Unix systems, and pass it to
2544 @code{convert-standard-filename}.
2545 @end defun
2546
2547 @node Contents of Directories
2548 @section Contents of Directories
2549 @cindex directory-oriented functions
2550 @cindex file names in directory
2551
2552 A directory is a kind of file that contains other files entered under
2553 various names. Directories are a feature of the file system.
2554
2555 Emacs can list the names of the files in a directory as a Lisp list,
2556 or display the names in a buffer using the @code{ls} shell command. In
2557 the latter case, it can optionally display information about each file,
2558 depending on the options passed to the @code{ls} command.
2559
2560 @defun directory-files directory &optional full-name match-regexp nosort
2561 This function returns a list of the names of the files in the directory
2562 @var{directory}. By default, the list is in alphabetical order.
2563
2564 If @var{full-name} is non-@code{nil}, the function returns the files'
2565 absolute file names. Otherwise, it returns the names relative to
2566 the specified directory.
2567
2568 If @var{match-regexp} is non-@code{nil}, this function returns only
2569 those file names that contain a match for that regular expression---the
2570 other file names are excluded from the list. On case-insensitive
2571 filesystems, the regular expression matching is case-insensitive.
2572
2573 @c Emacs 19 feature
2574 If @var{nosort} is non-@code{nil}, @code{directory-files} does not sort
2575 the list, so you get the file names in no particular order. Use this if
2576 you want the utmost possible speed and don't care what order the files
2577 are processed in. If the order of processing is visible to the user,
2578 then the user will probably be happier if you do sort the names.
2579
2580 @example
2581 @group
2582 (directory-files "~lewis")
2583 @result{} ("#foo#" "#foo.el#" "." ".."
2584 "dired-mods.el" "files.texi"
2585 "files.texi.~1~")
2586 @end group
2587 @end example
2588
2589 An error is signaled if @var{directory} is not the name of a directory
2590 that can be read.
2591 @end defun
2592
2593 @defun directory-files-and-attributes directory &optional full-name match-regexp nosort id-format
2594 This is similar to @code{directory-files} in deciding which files
2595 to report on and how to report their names. However, instead
2596 of returning a list of file names, it returns for each file a
2597 list @code{(@var{filename} . @var{attributes})}, where @var{attributes}
2598 is what @code{file-attributes} would return for that file.
2599 The optional argument @var{id-format} has the same meaning as the
2600 corresponding argument to @code{file-attributes} (@pxref{Definition
2601 of file-attributes}).
2602 @end defun
2603
2604 @defun file-expand-wildcards pattern &optional full
2605 This function expands the wildcard pattern @var{pattern}, returning
2606 a list of file names that match it.
2607
2608 If @var{pattern} is written as an absolute file name,
2609 the values are absolute also.
2610
2611 If @var{pattern} is written as a relative file name, it is interpreted
2612 relative to the current default directory. The file names returned are
2613 normally also relative to the current default directory. However, if
2614 @var{full} is non-@code{nil}, they are absolute.
2615 @end defun
2616
2617 @defun insert-directory file switches &optional wildcard full-directory-p
2618 This function inserts (in the current buffer) a directory listing for
2619 directory @var{file}, formatted with @code{ls} according to
2620 @var{switches}. It leaves point after the inserted text.
2621 @var{switches} may be a string of options, or a list of strings
2622 representing individual options.
2623
2624 The argument @var{file} may be either a directory name or a file
2625 specification including wildcard characters. If @var{wildcard} is
2626 non-@code{nil}, that means treat @var{file} as a file specification with
2627 wildcards.
2628
2629 If @var{full-directory-p} is non-@code{nil}, that means the directory
2630 listing is expected to show the full contents of a directory. You
2631 should specify @code{t} when @var{file} is a directory and switches do
2632 not contain @samp{-d}. (The @samp{-d} option to @code{ls} says to
2633 describe a directory itself as a file, rather than showing its
2634 contents.)
2635
2636 On most systems, this function works by running a directory listing
2637 program whose name is in the variable @code{insert-directory-program}.
2638 If @var{wildcard} is non-@code{nil}, it also runs the shell specified by
2639 @code{shell-file-name}, to expand the wildcards.
2640
2641 MS-DOS and MS-Windows systems usually lack the standard Unix program
2642 @code{ls}, so this function emulates the standard Unix program @code{ls}
2643 with Lisp code.
2644
2645 As a technical detail, when @var{switches} contains the long
2646 @samp{--dired} option, @code{insert-directory} treats it specially,
2647 for the sake of dired. However, the normally equivalent short
2648 @samp{-D} option is just passed on to @code{insert-directory-program},
2649 as any other option.
2650 @end defun
2651
2652 @defvar insert-directory-program
2653 This variable's value is the program to run to generate a directory listing
2654 for the function @code{insert-directory}. It is ignored on systems
2655 which generate the listing with Lisp code.
2656 @end defvar
2657
2658 @node Create/Delete Dirs
2659 @section Creating, Copying and Deleting Directories
2660 @cindex creating, copying and deleting directories
2661 @c Emacs 19 features
2662
2663 Most Emacs Lisp file-manipulation functions get errors when used on
2664 files that are directories. For example, you cannot delete a directory
2665 with @code{delete-file}. These special functions exist to create and
2666 delete directories.
2667
2668 @findex mkdir
2669 @deffn Command make-directory dirname &optional parents
2670 This command creates a directory named @var{dirname}. If
2671 @var{parents} is non-@code{nil}, as is always the case in an
2672 interactive call, that means to create the parent directories first,
2673 if they don't already exist.
2674
2675 @code{mkdir} is an alias for this.
2676 @end deffn
2677
2678 @deffn Command copy-directory dirname newname &optional keep-time parents copy-contents
2679 This command copies the directory named @var{dirname} to
2680 @var{newname}. If @var{newname} names an existing directory,
2681 @var{dirname} will be copied to a subdirectory there.
2682
2683 It always sets the file modes of the copied files to match the
2684 corresponding original file.
2685
2686 The third argument @var{keep-time} non-@code{nil} means to preserve the
2687 modification time of the copied files. A prefix arg makes
2688 @var{keep-time} non-@code{nil}.
2689
2690 The fourth argument @var{parents} says whether to
2691 create parent directories if they don't exist. Interactively,
2692 this happens by default.
2693
2694 The fifth argument @var{copy-contents}, if non-@code{nil}, means to
2695 copy the contents of @var{dirname} directly into @var{newname} if the
2696 latter is an existing directory, instead of copying @var{dirname} into
2697 it as a subdirectory.
2698 @end deffn
2699
2700 @cindex trash
2701 @vindex delete-by-moving-to-trash
2702 @deffn Command delete-directory dirname &optional recursive trash
2703 This command deletes the directory named @var{dirname}. The function
2704 @code{delete-file} does not work for files that are directories; you
2705 must use @code{delete-directory} for them. If @var{recursive} is
2706 @code{nil}, and the directory contains any files,
2707 @code{delete-directory} signals an error.
2708
2709 @code{delete-directory} only follows symbolic links at the level of
2710 parent directories.
2711
2712 If the optional argument @var{trash} is non-@code{nil} and the
2713 variable @code{delete-by-moving-to-trash} is non-@code{nil}, this
2714 command moves the file into the system Trash instead of deleting it.
2715 @xref{Misc File Ops,,Miscellaneous File Operations, emacs, The GNU
2716 Emacs Manual}. When called interactively, @var{trash} is @code{t} if
2717 no prefix argument is given, and @code{nil} otherwise.
2718 @end deffn
2719
2720 @node Magic File Names
2721 @section Making Certain File Names ``Magic''
2722 @cindex magic file names
2723
2724 You can implement special handling for certain file names. This is
2725 called making those names @dfn{magic}. The principal use for this
2726 feature is in implementing access to remote files (@pxref{Remote Files,,
2727 Remote Files, emacs, The GNU Emacs Manual}).
2728
2729 To define a kind of magic file name, you must supply a regular
2730 expression to define the class of names (all those that match the
2731 regular expression), plus a handler that implements all the primitive
2732 Emacs file operations for file names that match.
2733
2734 @cindex file handler
2735 @vindex file-name-handler-alist
2736 The variable @code{file-name-handler-alist} holds a list of handlers,
2737 together with regular expressions that determine when to apply each
2738 handler. Each element has this form:
2739
2740 @example
2741 (@var{regexp} . @var{handler})
2742 @end example
2743
2744 @noindent
2745 All the Emacs primitives for file access and file name transformation
2746 check the given file name against @code{file-name-handler-alist}. If
2747 the file name matches @var{regexp}, the primitives handle that file by
2748 calling @var{handler}.
2749
2750 The first argument given to @var{handler} is the name of the
2751 primitive, as a symbol; the remaining arguments are the arguments that
2752 were passed to that primitive. (The first of these arguments is most
2753 often the file name itself.) For example, if you do this:
2754
2755 @example
2756 (file-exists-p @var{filename})
2757 @end example
2758
2759 @noindent
2760 and @var{filename} has handler @var{handler}, then @var{handler} is
2761 called like this:
2762
2763 @example
2764 (funcall @var{handler} 'file-exists-p @var{filename})
2765 @end example
2766
2767 When a function takes two or more arguments that must be file names,
2768 it checks each of those names for a handler. For example, if you do
2769 this:
2770
2771 @example
2772 (expand-file-name @var{filename} @var{dirname})
2773 @end example
2774
2775 @noindent
2776 then it checks for a handler for @var{filename} and then for a handler
2777 for @var{dirname}. In either case, the @var{handler} is called like
2778 this:
2779
2780 @example
2781 (funcall @var{handler} 'expand-file-name @var{filename} @var{dirname})
2782 @end example
2783
2784 @noindent
2785 The @var{handler} then needs to figure out whether to handle
2786 @var{filename} or @var{dirname}.
2787
2788 If the specified file name matches more than one handler, the one
2789 whose match starts last in the file name gets precedence. This rule
2790 is chosen so that handlers for jobs such as uncompression are handled
2791 first, before handlers for jobs such as remote file access.
2792
2793 Here are the operations that a magic file name handler gets to handle:
2794
2795 @ifnottex
2796 @noindent
2797 @code{access-file}, @code{add-name-to-file},
2798 @code{byte-compiler-base-file-name},@*
2799 @code{copy-directory}, @code{copy-file},
2800 @code{delete-directory}, @code{delete-file},
2801 @code{diff-latest-backup-file},
2802 @code{directory-file-name},
2803 @code{directory-files},
2804 @code{directory-files-and-attributes},
2805 @code{dired-compress-file}, @code{dired-uncache},@*
2806 @code{expand-file-name},
2807 @code{file-accessible-directory-p},
2808 @code{file-acl},
2809 @code{file-attributes},
2810 @code{file-directory-p},
2811 @code{file-equal-p},
2812 @code{file-executable-p}, @code{file-exists-p},
2813 @code{file-in-directory-p},
2814 @code{file-local-copy},
2815 @code{file-modes}, @code{file-name-all-completions},
2816 @code{file-name-as-directory},
2817 @code{file-name-completion},
2818 @code{file-name-directory},
2819 @code{file-name-nondirectory},
2820 @code{file-name-sans-versions}, @code{file-newer-than-file-p},
2821 @code{file-notify-add-watch}, @code{file-notify-rm-watch},
2822 @code{file-ownership-preserved-p},
2823 @code{file-readable-p}, @code{file-regular-p},
2824 @code{file-remote-p}, @code{file-selinux-context},
2825 @code{file-symlink-p}, @code{file-truename}, @code{file-writable-p},
2826 @code{find-backup-file-name},
2827 @c Not sure why it was here: @code{find-file-noselect},@*
2828 @code{get-file-buffer},
2829 @code{insert-directory},
2830 @code{insert-file-contents},@*
2831 @code{load},
2832 @code{make-auto-save-file-name},
2833 @code{make-directory},
2834 @code{make-directory-internal},
2835 @code{make-symbolic-link},@*
2836 @code{process-file},
2837 @code{rename-file}, @code{set-file-acl}, @code{set-file-modes},
2838 @code{set-file-selinux-context}, @code{set-file-times},
2839 @code{set-visited-file-modtime}, @code{shell-command},
2840 @code{start-file-process},
2841 @code{substitute-in-file-name},@*
2842 @code{unhandled-file-name-directory},
2843 @code{vc-registered},
2844 @code{verify-visited-file-modtime},@*
2845 @code{write-region}.
2846 @end ifnottex
2847 @iftex
2848 @noindent
2849 @flushleft
2850 @code{access-file}, @code{add-name-to-file},
2851 @code{byte-com@discretionary{}{}{}piler-base-file-name},
2852 @code{copy-directory}, @code{copy-file},
2853 @code{delete-directory}, @code{delete-file},
2854 @code{diff-latest-backup-file},
2855 @code{directory-file-name},
2856 @code{directory-files},
2857 @code{directory-files-and-at@discretionary{}{}{}tributes},
2858 @code{dired-compress-file}, @code{dired-uncache},
2859 @code{expand-file-name},
2860 @code{file-accessible-direc@discretionary{}{}{}tory-p},
2861 @code{file-acl},
2862 @code{file-attributes},
2863 @code{file-direc@discretionary{}{}{}tory-p},
2864 @code{file-equal-p},
2865 @code{file-executable-p}, @code{file-exists-p},
2866 @code{file-in-directory-p},
2867 @code{file-local-copy},
2868 @code{file-modes}, @code{file-name-all-completions},
2869 @code{file-name-as-directory},
2870 @code{file-name-completion},
2871 @code{file-name-directory},
2872 @code{file-name-nondirec@discretionary{}{}{}tory},
2873 @code{file-name-sans-versions}, @code{file-newer-than-file-p},
2874 @code{file-notify-add-watch}, @code{file-notify-rm-watch},
2875 @code{file-ownership-pre@discretionary{}{}{}served-p},
2876 @code{file-readable-p}, @code{file-regular-p},
2877 @code{file-remote-p}, @code{file-selinux-context},
2878 @code{file-symlink-p}, @code{file-truename}, @code{file-writable-p},
2879 @code{find-backup-file-name},
2880 @c Not sure why it was here: @code{find-file-noselect},
2881 @code{get-file-buffer},
2882 @code{insert-directory},
2883 @code{insert-file-contents},
2884 @code{load},
2885 @code{make-auto-save-file-name},
2886 @code{make-direc@discretionary{}{}{}tory},
2887 @code{make-direc@discretionary{}{}{}tory-internal},
2888 @code{make-symbolic-link},
2889 @code{process-file},
2890 @code{rename-file}, @code{set-file-acl}, @code{set-file-modes},
2891 @code{set-file-selinux-context}, @code{set-file-times},
2892 @code{set-visited-file-modtime}, @code{shell-command},
2893 @code{start-file-process},
2894 @code{substitute-in-file-name},
2895 @code{unhandled-file-name-directory},
2896 @code{vc-regis@discretionary{}{}{}tered},
2897 @code{verify-visited-file-modtime},
2898 @code{write-region}.
2899 @end flushleft
2900 @end iftex
2901
2902 Handlers for @code{insert-file-contents} typically need to clear the
2903 buffer's modified flag, with @code{(set-buffer-modified-p nil)}, if the
2904 @var{visit} argument is non-@code{nil}. This also has the effect of
2905 unlocking the buffer if it is locked.
2906
2907 The handler function must handle all of the above operations, and
2908 possibly others to be added in the future. It need not implement all
2909 these operations itself---when it has nothing special to do for a
2910 certain operation, it can reinvoke the primitive, to handle the
2911 operation ``in the usual way''. It should always reinvoke the primitive
2912 for an operation it does not recognize. Here's one way to do this:
2913
2914 @smallexample
2915 (defun my-file-handler (operation &rest args)
2916 ;; @r{First check for the specific operations}
2917 ;; @r{that we have special handling for.}
2918 (cond ((eq operation 'insert-file-contents) @dots{})
2919 ((eq operation 'write-region) @dots{})
2920 @dots{}
2921 ;; @r{Handle any operation we don't know about.}
2922 (t (let ((inhibit-file-name-handlers
2923 (cons 'my-file-handler
2924 (and (eq inhibit-file-name-operation operation)
2925 inhibit-file-name-handlers)))
2926 (inhibit-file-name-operation operation))
2927 (apply operation args)))))
2928 @end smallexample
2929
2930 When a handler function decides to call the ordinary Emacs primitive for
2931 the operation at hand, it needs to prevent the primitive from calling
2932 the same handler once again, thus leading to an infinite recursion. The
2933 example above shows how to do this, with the variables
2934 @code{inhibit-file-name-handlers} and
2935 @code{inhibit-file-name-operation}. Be careful to use them exactly as
2936 shown above; the details are crucial for proper behavior in the case of
2937 multiple handlers, and for operations that have two file names that may
2938 each have handlers.
2939
2940 @kindex safe-magic (@r{property})
2941 Handlers that don't really do anything special for actual access to the
2942 file---such as the ones that implement completion of host names for
2943 remote file names---should have a non-@code{nil} @code{safe-magic}
2944 property. For instance, Emacs normally ``protects'' directory names
2945 it finds in @code{PATH} from becoming magic, if they look like magic
2946 file names, by prefixing them with @samp{/:}. But if the handler that
2947 would be used for them has a non-@code{nil} @code{safe-magic}
2948 property, the @samp{/:} is not added.
2949
2950 @kindex operations (@r{property})
2951 A file name handler can have an @code{operations} property to
2952 declare which operations it handles in a nontrivial way. If this
2953 property has a non-@code{nil} value, it should be a list of
2954 operations; then only those operations will call the handler. This
2955 avoids inefficiency, but its main purpose is for autoloaded handler
2956 functions, so that they won't be loaded except when they have real
2957 work to do.
2958
2959 Simply deferring all operations to the usual primitives does not
2960 work. For instance, if the file name handler applies to
2961 @code{file-exists-p}, then it must handle @code{load} itself, because
2962 the usual @code{load} code won't work properly in that case. However,
2963 if the handler uses the @code{operations} property to say it doesn't
2964 handle @code{file-exists-p}, then it need not handle @code{load}
2965 nontrivially.
2966
2967 @defvar inhibit-file-name-handlers
2968 This variable holds a list of handlers whose use is presently inhibited
2969 for a certain operation.
2970 @end defvar
2971
2972 @defvar inhibit-file-name-operation
2973 The operation for which certain handlers are presently inhibited.
2974 @end defvar
2975
2976 @defun find-file-name-handler file operation
2977 This function returns the handler function for file name @var{file},
2978 or @code{nil} if there is none. The argument @var{operation} should
2979 be the operation to be performed on the file---the value you will pass
2980 to the handler as its first argument when you call it. If
2981 @var{operation} equals @code{inhibit-file-name-operation}, or if it is
2982 not found in the @code{operations} property of the handler, this
2983 function returns @code{nil}.
2984 @end defun
2985
2986 @defun file-local-copy filename
2987 This function copies file @var{filename} to an ordinary non-magic file
2988 on the local machine, if it isn't on the local machine already. Magic
2989 file names should handle the @code{file-local-copy} operation if they
2990 refer to files on other machines. A magic file name that is used for
2991 other purposes than remote file access should not handle
2992 @code{file-local-copy}; then this function will treat the file as
2993 local.
2994
2995 If @var{filename} is local, whether magic or not, this function does
2996 nothing and returns @code{nil}. Otherwise it returns the file name
2997 of the local copy file.
2998 @end defun
2999
3000 @defun file-remote-p filename &optional identification connected
3001 This function tests whether @var{filename} is a remote file. If
3002 @var{filename} is local (not remote), the return value is @code{nil}.
3003 If @var{filename} is indeed remote, the return value is a string that
3004 identifies the remote system.
3005
3006 This identifier string can include a host name and a user name, as
3007 well as characters designating the method used to access the remote
3008 system. For example, the remote identifier string for the filename
3009 @code{/sudo::/some/file} is @code{/sudo:root@@localhost:}.
3010
3011 If @code{file-remote-p} returns the same identifier for two different
3012 filenames, that means they are stored on the same file system and can
3013 be accessed locally with respect to each other. This means, for
3014 example, that it is possible to start a remote process accessing both
3015 files at the same time. Implementers of file handlers need to ensure
3016 this principle is valid.
3017
3018 @var{identification} specifies which part of the identifier shall be
3019 returned as string. @var{identification} can be the symbol
3020 @code{method}, @code{user} or @code{host}; any other value is handled
3021 like @code{nil} and means to return the complete identifier string.
3022 In the example above, the remote @code{user} identifier string would
3023 be @code{root}.
3024
3025 If @var{connected} is non-@code{nil}, this function returns @code{nil}
3026 even if @var{filename} is remote, if Emacs has no network connection
3027 to its host. This is useful when you want to avoid the delay of
3028 making connections when they don't exist.
3029 @end defun
3030
3031 @defun unhandled-file-name-directory filename
3032 This function returns the name of a directory that is not magic. It
3033 uses the directory part of @var{filename} if that is not magic. For a
3034 magic file name, it invokes the file name handler, which therefore
3035 decides what value to return. If @var{filename} is not accessible
3036 from a local process, then the file name handler should indicate it by
3037 returning @code{nil}.
3038
3039 This is useful for running a subprocess; every subprocess must have a
3040 non-magic directory to serve as its current directory, and this function
3041 is a good way to come up with one.
3042 @end defun
3043
3044 @defopt remote-file-name-inhibit-cache
3045 The attributes of remote files can be cached for better performance. If
3046 they are changed outside of Emacs's control, the cached values become
3047 invalid, and must be reread.
3048
3049 When this variable is set to @code{nil}, cached values are never
3050 expired. Use this setting with caution, only if you are sure nothing
3051 other than Emacs ever changes the remote files. If it is set to
3052 @code{t}, cached values are never used. This is the safest value, but
3053 could result in performance degradation.
3054
3055 A compromise is to set it to a positive number. This means that
3056 cached values are used for that amount of seconds since they were
3057 cached. If a remote file is checked regularly, it might be a good
3058 idea to let-bind this variable to a value less than the time period
3059 between consecutive checks. For example:
3060
3061 @example
3062 (defun display-time-file-nonempty-p (file)
3063 (let ((remote-file-name-inhibit-cache
3064 (- display-time-interval 5)))
3065 (and (file-exists-p file)
3066 (< 0 (nth 7 (file-attributes
3067 (file-chase-links file)))))))
3068 @end example
3069 @end defopt
3070
3071 @node Format Conversion
3072 @section File Format Conversion
3073
3074 @cindex file format conversion
3075 @cindex encoding file formats
3076 @cindex decoding file formats
3077 @cindex text properties in files
3078 @cindex saving text properties
3079 Emacs performs several steps to convert the data in a buffer (text,
3080 text properties, and possibly other information) to and from a
3081 representation suitable for storing into a file. This section describes
3082 the fundamental functions that perform this @dfn{format conversion},
3083 namely @code{insert-file-contents} for reading a file into a buffer,
3084 and @code{write-region} for writing a buffer into a file.
3085
3086 @menu
3087 * Overview: Format Conversion Overview. @code{insert-file-contents} and @code{write-region}.
3088 * Round-Trip: Format Conversion Round-Trip. Using @code{format-alist}.
3089 * Piecemeal: Format Conversion Piecemeal. Specifying non-paired conversion.
3090 @end menu
3091
3092 @node Format Conversion Overview
3093 @subsection Overview
3094 @noindent
3095 The function @code{insert-file-contents}:
3096
3097 @itemize
3098 @item initially, inserts bytes from the file into the buffer;
3099 @item decodes bytes to characters as appropriate;
3100 @item processes formats as defined by entries in @code{format-alist}; and
3101 @item calls functions in @code{after-insert-file-functions}.
3102 @end itemize
3103
3104 @noindent
3105 The function @code{write-region}:
3106
3107 @itemize
3108 @item initially, calls functions in @code{write-region-annotate-functions};
3109 @item processes formats as defined by entries in @code{format-alist};
3110 @item encodes characters to bytes as appropriate; and
3111 @item modifies the file with the bytes.
3112 @end itemize
3113
3114 This shows the symmetry of the lowest-level operations; reading and
3115 writing handle things in opposite order. The rest of this section
3116 describes the two facilities surrounding the three variables named
3117 above, as well as some related functions. @ref{Coding Systems}, for
3118 details on character encoding and decoding.
3119
3120 @node Format Conversion Round-Trip
3121 @subsection Round-Trip Specification
3122
3123 The most general of the two facilities is controlled by the variable
3124 @code{format-alist}, a list of @dfn{file format} specifications, which
3125 describe textual representations used in files for the data in an Emacs
3126 buffer. The descriptions for reading and writing are paired, which is
3127 why we call this ``round-trip'' specification
3128 (@pxref{Format Conversion Piecemeal}, for non-paired specification).
3129
3130 @defvar format-alist
3131 This list contains one format definition for each defined file format.
3132 Each format definition is a list of this form:
3133
3134 @example
3135 (@var{name} @var{doc-string} @var{regexp} @var{from-fn} @var{to-fn} @var{modify} @var{mode-fn} @var{preserve})
3136 @end example
3137 @end defvar
3138
3139 @cindex format definition
3140 @noindent
3141 Here is what the elements in a format definition mean:
3142
3143 @table @var
3144 @item name
3145 The name of this format.
3146
3147 @item doc-string
3148 A documentation string for the format.
3149
3150 @item regexp
3151 A regular expression which is used to recognize files represented in
3152 this format. If @code{nil}, the format is never applied automatically.
3153
3154 @item from-fn
3155 A shell command or function to decode data in this format (to convert
3156 file data into the usual Emacs data representation).
3157
3158 A shell command is represented as a string; Emacs runs the command as a
3159 filter to perform the conversion.
3160
3161 If @var{from-fn} is a function, it is called with two arguments, @var{begin}
3162 and @var{end}, which specify the part of the buffer it should convert.
3163 It should convert the text by editing it in place. Since this can
3164 change the length of the text, @var{from-fn} should return the modified
3165 end position.
3166
3167 One responsibility of @var{from-fn} is to make sure that the beginning
3168 of the file no longer matches @var{regexp}. Otherwise it is likely to
3169 get called again.
3170
3171 @item to-fn
3172 A shell command or function to encode data in this format---that is, to
3173 convert the usual Emacs data representation into this format.
3174
3175 If @var{to-fn} is a string, it is a shell command; Emacs runs the
3176 command as a filter to perform the conversion.
3177
3178 If @var{to-fn} is a function, it is called with three arguments:
3179 @var{begin} and @var{end}, which specify the part of the buffer it
3180 should convert, and @var{buffer}, which specifies which buffer. There
3181 are two ways it can do the conversion:
3182
3183 @itemize @bullet
3184 @item
3185 By editing the buffer in place. In this case, @var{to-fn} should
3186 return the end-position of the range of text, as modified.
3187
3188 @item
3189 By returning a list of annotations. This is a list of elements of the
3190 form @code{(@var{position} . @var{string})}, where @var{position} is an
3191 integer specifying the relative position in the text to be written, and
3192 @var{string} is the annotation to add there. The list must be sorted in
3193 order of position when @var{to-fn} returns it.
3194
3195 When @code{write-region} actually writes the text from the buffer to the
3196 file, it intermixes the specified annotations at the corresponding
3197 positions. All this takes place without modifying the buffer.
3198 @end itemize
3199
3200 @item modify
3201 A flag, @code{t} if the encoding function modifies the buffer, and
3202 @code{nil} if it works by returning a list of annotations.
3203
3204 @item mode-fn
3205 A minor-mode function to call after visiting a file converted from this
3206 format. The function is called with one argument, the integer 1;
3207 that tells a minor-mode function to enable the mode.
3208
3209 @item preserve
3210 A flag, @code{t} if @code{format-write-file} should not remove this format
3211 from @code{buffer-file-format}.
3212 @end table
3213
3214 The function @code{insert-file-contents} automatically recognizes file
3215 formats when it reads the specified file. It checks the text of the
3216 beginning of the file against the regular expressions of the format
3217 definitions, and if it finds a match, it calls the decoding function for
3218 that format. Then it checks all the known formats over again.
3219 It keeps checking them until none of them is applicable.
3220
3221 Visiting a file, with @code{find-file-noselect} or the commands that use
3222 it, performs conversion likewise (because it calls
3223 @code{insert-file-contents}); it also calls the mode function for each
3224 format that it decodes. It stores a list of the format names in the
3225 buffer-local variable @code{buffer-file-format}.
3226
3227 @defvar buffer-file-format
3228 This variable states the format of the visited file. More precisely,
3229 this is a list of the file format names that were decoded in the course
3230 of visiting the current buffer's file. It is always buffer-local in all
3231 buffers.
3232 @end defvar
3233
3234 When @code{write-region} writes data into a file, it first calls the
3235 encoding functions for the formats listed in @code{buffer-file-format},
3236 in the order of appearance in the list.
3237
3238 @deffn Command format-write-file file format &optional confirm
3239 This command writes the current buffer contents into the file @var{file}
3240 in a format based on @var{format}, which is a list of format names. It
3241 constructs the actual format starting from @var{format}, then appending
3242 any elements from the value of @code{buffer-file-format} with a
3243 non-@code{nil} @var{preserve} flag (see above), if they are not already
3244 present in @var{format}. It then updates @code{buffer-file-format} with
3245 this format, making it the default for future saves. Except for the
3246 @var{format} argument, this command is similar to @code{write-file}. In
3247 particular, @var{confirm} has the same meaning and interactive treatment
3248 as the corresponding argument to @code{write-file}. @xref{Definition of
3249 write-file}.
3250 @end deffn
3251
3252 @deffn Command format-find-file file format
3253 This command finds the file @var{file}, converting it according to
3254 format @var{format}. It also makes @var{format} the default if the
3255 buffer is saved later.
3256
3257 The argument @var{format} is a list of format names. If @var{format} is
3258 @code{nil}, no conversion takes place. Interactively, typing just
3259 @key{RET} for @var{format} specifies @code{nil}.
3260 @end deffn
3261
3262 @deffn Command format-insert-file file format &optional beg end
3263 This command inserts the contents of file @var{file}, converting it
3264 according to format @var{format}. If @var{beg} and @var{end} are
3265 non-@code{nil}, they specify which part of the file to read, as in
3266 @code{insert-file-contents} (@pxref{Reading from Files}).
3267
3268 The return value is like what @code{insert-file-contents} returns: a
3269 list of the absolute file name and the length of the data inserted
3270 (after conversion).
3271
3272 The argument @var{format} is a list of format names. If @var{format} is
3273 @code{nil}, no conversion takes place. Interactively, typing just
3274 @key{RET} for @var{format} specifies @code{nil}.
3275 @end deffn
3276
3277 @defvar buffer-auto-save-file-format
3278 This variable specifies the format to use for auto-saving. Its value is
3279 a list of format names, just like the value of
3280 @code{buffer-file-format}; however, it is used instead of
3281 @code{buffer-file-format} for writing auto-save files. If the value
3282 is @code{t}, the default, auto-saving uses the same format as a
3283 regular save in the same buffer. This variable is always buffer-local
3284 in all buffers.
3285 @end defvar
3286
3287 @node Format Conversion Piecemeal
3288 @subsection Piecemeal Specification
3289
3290 In contrast to the round-trip specification described in the previous
3291 subsection (@pxref{Format Conversion Round-Trip}), you can use the variables
3292 @code{after-insert-file-functions} and @code{write-region-annotate-functions}
3293 to separately control the respective reading and writing conversions.
3294
3295 Conversion starts with one representation and produces another
3296 representation. When there is only one conversion to do, there is no
3297 conflict about what to start with. However, when there are multiple
3298 conversions involved, conflict may arise when two conversions need to
3299 start with the same data.
3300
3301 This situation is best understood in the context of converting text
3302 properties during @code{write-region}. For example, the character at
3303 position 42 in a buffer is @samp{X} with a text property @code{foo}. If
3304 the conversion for @code{foo} is done by inserting into the buffer, say,
3305 @samp{FOO:}, then that changes the character at position 42 from
3306 @samp{X} to @samp{F}. The next conversion will start with the wrong
3307 data straight away.
3308
3309 To avoid conflict, cooperative conversions do not modify the buffer,
3310 but instead specify @dfn{annotations}, a list of elements of the form
3311 @code{(@var{position} . @var{string})}, sorted in order of increasing
3312 @var{position}.
3313
3314 If there is more than one conversion, @code{write-region} merges their
3315 annotations destructively into one sorted list. Later, when the text
3316 from the buffer is actually written to the file, it intermixes the
3317 specified annotations at the corresponding positions. All this takes
3318 place without modifying the buffer.
3319
3320 @c ??? What about ``overriding'' conversions like those allowed
3321 @c ??? for `write-region-annotate-functions', below? --ttn
3322
3323 In contrast, when reading, the annotations intermixed with the text
3324 are handled immediately. @code{insert-file-contents} sets point to
3325 the beginning of some text to be converted, then calls the conversion
3326 functions with the length of that text. These functions should always
3327 return with point at the beginning of the inserted text. This
3328 approach makes sense for reading because annotations removed by the
3329 first converter can't be mistakenly processed by a later converter.
3330 Each conversion function should scan for the annotations it
3331 recognizes, remove the annotation, modify the buffer text (to set a
3332 text property, for example), and return the updated length of the
3333 text, as it stands after those changes. The value returned by one
3334 function becomes the argument to the next function.
3335
3336 @defvar write-region-annotate-functions
3337 A list of functions for @code{write-region} to call. Each function in
3338 the list is called with two arguments: the start and end of the region
3339 to be written. These functions should not alter the contents of the
3340 buffer. Instead, they should return annotations.
3341
3342 As a special case, a function may return with a different buffer
3343 current. Emacs takes this to mean that the current buffer contains
3344 altered text to be output. It therefore changes the @var{start} and
3345 @var{end} arguments of the @code{write-region} call, giving them the
3346 values of @code{point-min} and @code{point-max} in the new buffer,
3347 respectively. It also discards all previous annotations, because they
3348 should have been dealt with by this function.
3349 @end defvar
3350
3351 @defvar write-region-post-annotation-function
3352 The value of this variable, if non-@code{nil}, should be a function.
3353 This function is called, with no arguments, after @code{write-region}
3354 has completed.
3355
3356 If any function in @code{write-region-annotate-functions} returns with
3357 a different buffer current, Emacs calls
3358 @code{write-region-post-annotation-function} more than once. Emacs
3359 calls it with the last buffer that was current, and again with the
3360 buffer before that, and so on back to the original buffer.
3361
3362 Thus, a function in @code{write-region-annotate-functions} can create
3363 a buffer, give this variable the local value of @code{kill-buffer} in
3364 that buffer, set up the buffer with altered text, and make the buffer
3365 current. The buffer will be killed after @code{write-region} is done.
3366 @end defvar
3367
3368 @defvar after-insert-file-functions
3369 Each function in this list is called by @code{insert-file-contents}
3370 with one argument, the number of characters inserted, and with point
3371 at the beginning of the inserted text. Each function should leave
3372 point unchanged, and return the new character count describing the
3373 inserted text as modified by the function.
3374 @c ??? The docstring mentions a handler from `file-name-handler-alist'
3375 @c "intercepting" `insert-file-contents'. Hmmm. --ttn
3376 @end defvar
3377
3378 We invite users to write Lisp programs to store and retrieve text
3379 properties in files, using these hooks, and thus to experiment with
3380 various data formats and find good ones. Eventually we hope users
3381 will produce good, general extensions we can install in Emacs.
3382
3383 We suggest not trying to handle arbitrary Lisp objects as text property
3384 names or values---because a program that general is probably difficult
3385 to write, and slow. Instead, choose a set of possible data types that
3386 are reasonably flexible, and not too hard to encode.