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