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