(XTread_socket): Delete the code to pass menu bar keys
[emacs.git] / lispref / files.texi
blob8b93faf9b6889f45fab012aa939bcebc4e9821a9
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
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}.
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}.
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
41 @node Visiting Files
42 @section Visiting Files
43 @cindex finding files
44 @cindex visiting files
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.
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.
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.
68 @menu
69 * Visiting Functions::         The usual interface functions for visiting.
70 * Subroutines of Visiting::    Lower-level subroutines that they use.
71 @end menu
73 @node Visiting Functions
74 @subsection Functions for Visiting Files
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.
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}.
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.
92 The body of the @code{find-file} function is very simple and looks
93 like this:
95 @example
96 (switch-to-buffer (find-file-noselect filename))
97 @end example
99 @noindent
100 (See @code{switch-to-buffer} in @ref{Displaying Buffers}.)
102 When @code{find-file} is called interactively, it prompts for
103 @var{filename} in the minibuffer.
104 @end deffn
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.
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.
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.
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}.
129 The @code{find-file-noselect} function returns the buffer that is
130 visiting the file @var{filename}.
132 @example
133 @group
134 (find-file-noselect "/etc/fstab")
135      @result{} #<buffer fstab>
136 @end group
137 @end example
138 @end defun
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}.
145 When this command is called interactively, it prompts for
146 @var{filename}.
147 @end deffn
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.
154 When this command is called interactively, it prompts for
155 @var{filename}.
156 @end deffn
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}.
165 When @code{view-file} is called interactively, it prompts for
166 @var{filename}.
167 @end deffn
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.
175 This variable works just like a normal hook, but we think that renaming
176 it would not be advisable.
177 @end defvar
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.
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
191 @node Subroutines of Visiting
192 @comment  node-name,  next,  previous,  up
193 @subsection Subroutines of Visiting
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.
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}.
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.
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
224 This function is used by @code{find-file-noselect}.
225 It uses @code{generate-new-buffer} (@pxref{Creating Buffers}).
226 @end defun
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}).
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}.
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.
244 The last thing @code{after-find-file} does is call all the functions
245 in @code{find-file-hooks}.
246 @end defun
248 @node Saving Buffers
249 @section Saving Buffers
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.
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.
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:
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.
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
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.
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
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
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
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.
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:
322 @example
323 (or buffer-backed-up (backup-buffer))
324 @end example
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.
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
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.
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
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.
353 This variable automatically becomes buffer-local whenever it is set;
354 switching to a new major mode always resets this variable.  When you use
355 @code{add-hooks} to add an element to this hook, you should @emph{not}
356 specify a non-@code{nil} @var{local} argument, since this variable is
357 used @emph{only} locally.
358 @end defvar
360 @c Emacs 19 feature
361 @defvar after-save-hook
362 This normal hook runs after a buffer has been saved in its visited file.
363 @end defvar
365 @defvar file-precious-flag
366 If this variable is non-@code{nil}, then @code{save-buffer} protects
367 against I/O errors while saving by writing the new file to a temporary
368 name instead of the name it is supposed to have, and then renaming it to
369 the intended name after it is clear there are no errors.  This procedure
370 prevents problems such as a lack of disk space from resulting in an
371 invalid file.
373 As a side effect, backups are necessarily made by copying.  @xref{Rename
374 or Copy}.  Yet, at the same time, saving a precious file always breaks
375 all hard links between the file you save and other file names.
377 Some modes set this variable non-@code{nil} locally in particular
378 buffers.
379 @end defvar
381 @defopt require-final-newline
382 This variable determines whether files may be written out that do
383 @emph{not} end with a newline.  If the value of the variable is
384 @code{t}, then @code{save-buffer} silently adds a newline at the end of
385 the file whenever the buffer being saved does not already end in one.
386 If the value of the variable is non-@code{nil}, but not @code{t}, then
387 @code{save-buffer} asks the user whether to add a newline each time the
388 case arises.
390 If the value of the variable is @code{nil}, then @code{save-buffer}
391 doesn't add newlines at all.  @code{nil} is the default value, but a few
392 major modes set it to @code{t} in particular buffers.
393 @end defopt
395 @deffn Command set-visited-file-name filename &optional no-query
396 This function changes the visited file name of the current buffer to
397 @var{filename}.  It also renames the buffer based on @var{filename},
398 appending a string like @samp{<2>} if necessary to make a unique buffer
399 name.  It marks the buffer as @emph{modified},a since the contents do not
400 (as far as Emacs knows) match the actual file's contents.
402 If the specified file already exists, @code{set-visited-file-name}
403 asks for confirmation unless @var{no-query} is non-@code{nil}.
404 @end deffn
406 @node Reading from Files
407 @comment  node-name,  next,  previous,  up
408 @section Reading from Files
410   You can copy a file from the disk and insert it into a buffer
411 using the @code{insert-file-contents} function.  Don't use the user-level
412 command @code{insert-file} in a Lisp program, as that sets the mark.
414 @defun insert-file-contents filename &optional visit beg end replace
415 This function inserts the contents of file @var{filename} into the
416 current buffer after point.  It returns a list of the absolute file name
417 and the length of the data inserted.  An error is signaled if
418 @var{filename} is not the name of a file that can be read.
420 The function @code{insert-file-contents} checks the file contents
421 against the defined file formats, and converts the file contents if
422 appropriate.  @xref{Format Conversion}.  It also calls the functions in
423 the list @code{after-insert-file-functions}; see @ref{Saving
424 Properties}.
426 If @var{visit} is non-@code{nil}, this function additionally marks the
427 buffer as unmodified and sets up various fields in the buffer so that it
428 is visiting the file @var{filename}: these include the buffer's visited
429 file name and its last save file modtime.  This feature is used by
430 @code{find-file-noselect} and you probably should not use it yourself.
432 If @var{beg} and @var{end} are non-@code{nil}, they should be integers
433 specifying the portion of the file to insert.  In this case, @var{visit}
434 must be @code{nil}.  For example,
436 @example
437 (insert-file-contents filename nil 0 500)
438 @end example
440 @noindent
441 inserts the first 500 characters of a file.
443 If the argument @var{replace} is non-@code{nil}, it means to replace the
444 contents of the buffer (actually, just the accessible portion) with the
445 contents of the file.  This is better than simply deleting the buffer
446 contents and inserting the whole file, because (1) it preserves some
447 marker positions and (2) it puts less data in the undo list.
448 @end defun
450 If you want to pass a file name to another process so that another
451 program can read the file, use the function @code{file-local-copy}; see
452 @ref{Magic File Names}.
454 @node Writing to Files
455 @comment  node-name,  next,  previous,  up
456 @section Writing to Files
458   You can write the contents of a buffer, or part of a buffer, directly
459 to a file on disk using the @code{append-to-file} and
460 @code{write-region} functions.  Don't use these functions to write to
461 files that are being visited; that could cause confusion in the
462 mechanisms for visiting.
464 @deffn Command append-to-file start end filename
465 This function appends the contents of the region delimited by
466 @var{start} and @var{end} in the current buffer to the end of file
467 @var{filename}.  If that file does not exist, it is created.  This
468 function returns @code{nil}.
470 An error is signaled if @var{filename} specifies a nonwritable file,
471 or a nonexistent file in a directory where files cannot be created.
472 @end deffn
474 @deffn Command write-region start end filename &optional append visit
475 This function writes the region delimited by @var{start} and @var{end}
476 in the current buffer into the file specified by @var{filename}.
478 @c Emacs 19 feature
479 If @var{start} is a string, then @code{write-region} writes or appends
480 that string, rather than text from the buffer.
482 If @var{append} is non-@code{nil}, then the specified text is appended
483 to the existing file contents (if any).
485 If @var{visit} is @code{t}, then Emacs establishes an association
486 between the buffer and the file: the buffer is then visiting that file.
487 It also sets the last file modification time for the current buffer to
488 @var{filename}'s modtime, and marks the buffer as not modified.  This
489 feature is used by @code{save-buffer}, but you probably should not use
490 it yourself.
492 @c Emacs 19 feature
493 If @var{visit} is a string, it specifies the file name to visit.  This
494 way, you can write the data to one file (@var{filename}) while recording
495 the buffer as visiting another file (@var{visit}).  The argument
496 @var{visit} is used in the echo area message and also for file locking;
497 @var{visit} is stored in @code{buffer-file-name}.  This feature is used
498 to implement @code{file-precious-flag}; don't use it yourself unless you
499 really know what you're doing.
501 The function @code{write-region} converts the data which it writes to
502 the appropriate file formats specified by @code{buffer-file-format}.
503 @xref{Format Conversion}.  It also calls the functions in the list
504 @code{write-region-annotate-functions}; see @ref{Saving Properties}.
506 Normally, @code{write-region} displays a message @samp{Wrote file
507 @var{filename}} in the echo area.  If @var{visit} is neither @code{t}
508 nor @code{nil} nor a string, then this message is inhibited.  This
509 feature is useful for programs that use files for internal purposes,
510 files that the user does not need to know about.
511 @end deffn
513 @node File Locks
514 @section File Locks
515 @cindex file locks
517   When two users edit the same file at the same time, they are likely to
518 interfere with each other.  Emacs tries to prevent this situation from
519 arising by recording a @dfn{file lock} when a file is being modified.
520 Emacs can then detect the first attempt to modify a buffer visiting a
521 file that is locked by another Emacs job, and ask the user what to do.
523   File locks do not work properly when multiple machines can share
524 file systems, such as with NFS.  Perhaps a better file locking system
525 will be implemented in the future.  When file locks do not work, it is
526 possible for two users to make changes simultaneously, but Emacs can
527 still warn the user who saves second.  Also, the detection of
528 modification of a buffer visiting a file changed on disk catches some
529 cases of simultaneous editing; see @ref{Modification Time}.
531 @defun file-locked-p filename
532   This function returns @code{nil} if the file @var{filename} is not
533 locked by this Emacs process.  It returns @code{t} if it is locked by
534 this Emacs, and it returns the name of the user who has locked it if it
535 is locked by someone else.
537 @example
538 @group
539 (file-locked-p "foo")
540      @result{} nil
541 @end group
542 @end example
543 @end defun
545 @defun lock-buffer &optional filename
546   This function locks the file @var{filename}, if the current buffer is
547 modified.  The argument @var{filename} defaults to the current buffer's
548 visited file.  Nothing is done if the current buffer is not visiting a
549 file, or is not modified.
550 @end defun
552 @defun unlock-buffer
553 This function unlocks the file being visited in the current buffer,
554 if the buffer is modified.  If the buffer is not modified, then
555 the file should not be locked, so this function does nothing.  It also
556 does nothing if the current buffer is not visiting a file.
557 @end defun
559 @defun ask-user-about-lock file other-user
560 This function is called when the user tries to modify @var{file}, but it
561 is locked by another user named @var{other-user}.  The value it returns
562 determines what happens next:
564 @itemize @bullet
565 @item
566 A value of @code{t} says to grab the lock on the file.  Then
567 this user may edit the file and @var{other-user} loses the lock.
569 @item
570 A value of @code{nil} says to ignore the lock and let this
571 user edit the file anyway.
573 @item
574 @kindex file-locked
575 This function may instead signal a @code{file-locked} error, in which
576 case the change that the user was about to make does not take place.
578 The error message for this error looks like this:
580 @example
581 @error{} File is locked: @var{file} @var{other-user}
582 @end example
584 @noindent
585 where @code{file} is the name of the file and @var{other-user} is the
586 name of the user who has locked the file.
587 @end itemize
589   The default definition of this function asks the user to choose what
590 to do.  If you wish, you can replace the @code{ask-user-about-lock}
591 function with your own version that decides in another way.  The code
592 for its usual definition is in @file{userlock.el}.
593 @end defun
595 @node Information about Files
596 @section Information about Files
598   The functions described in this section all operate on strings that
599 designate file names.  All the functions have names that begin with the
600 word @samp{file}.  These functions all return information about actual
601 files or directories, so their arguments must all exist as actual files
602 or directories unless otherwise noted.
604 @menu
605 * Testing Accessibility::   Is a given file readable?  Writable?
606 * Kinds of Files::          Is it a directory?  A symbolic link?
607 * Truenames::               Eliminating symbolic links from a file name.
608 * File Attributes::         How large is it?  Any other names?  Etc.
609 @end menu
611 @node Testing Accessibility
612 @comment  node-name,  next,  previous,  up
613 @subsection Testing Accessibility
614 @cindex accessibility of a file
615 @cindex file accessibility
617   These functions test for permission to access a file in specific ways.
619 @defun file-exists-p filename
620 This function returns @code{t} if a file named @var{filename} appears
621 to exist.  This does not mean you can necessarily read the file, only
622 that you can find out its attributes.  (On Unix, this is true if the
623 file exists and you have execute permission on the containing
624 directories, regardless of the protection of the file itself.)
626 If the file does not exist, or if fascist access control policies
627 prevent you from finding the attributes of the file, this function
628 returns @code{nil}.
629 @end defun
631 @defun file-readable-p filename
632 This function returns @code{t} if a file named @var{filename} exists
633 and you can read it.  It returns @code{nil} otherwise.
635 @example
636 @group
637 (file-readable-p "files.texi")
638      @result{} t
639 @end group
640 @group
641 (file-exists-p "/usr/spool/mqueue")
642      @result{} t
643 @end group
644 @group
645 (file-readable-p "/usr/spool/mqueue")
646      @result{} nil
647 @end group
648 @end example
649 @end defun
651 @c Emacs 19 feature
652 @defun file-executable-p filename
653 This function returns @code{t} if a file named @var{filename} exists and
654 you can execute it.  It returns @code{nil} otherwise.  If the file is a
655 directory, execute permission means you can check the existence and
656 attributes of files inside the directory, and open those files if their
657 modes permit.
658 @end defun
660 @defun file-writable-p filename
661 This function returns @code{t} if the file @var{filename} can be written
662 or created by you, and @code{nil} otherwise.  A file is writable if the
663 file exists and you can write it.  It is creatable if it does not exist,
664 but the specified directory does exist and you can write in that
665 directory.
667 In the third example below, @file{foo} is not writable because the
668 parent directory does not exist, even though the user could create such
669 a directory.
671 @example
672 @group
673 (file-writable-p "~/foo")
674      @result{} t
675 @end group
676 @group
677 (file-writable-p "/foo")
678      @result{} nil
679 @end group
680 @group
681 (file-writable-p "~/no-such-dir/foo")
682      @result{} nil
683 @end group
684 @end example
685 @end defun
687 @c Emacs 19 feature
688 @defun file-accessible-directory-p dirname
689 This function returns @code{t} if you have permission to open existing
690 files in the directory whose name as a file is @var{dirname}; otherwise
691 (or if there is no such directory), it returns @code{nil}.  The value
692 of @var{dirname} may be either a directory name or the file name of a
693 directory.
695 Example: after the following,
697 @example
698 (file-accessible-directory-p "/foo")
699      @result{} nil
700 @end example
702 @noindent
703 we can deduce that any attempt to read a file in @file{/foo/} will
704 give an error.
705 @end defun
707 @defun file-ownership-preserved-p filename
708 This function returns @code{t} if deleting the file @var{filename} and
709 then creating it anew would keep the file's owner unchanged.
710 @end defun
712 @defun file-newer-than-file-p filename1 filename2
713 @cindex file age
714 @cindex file modification time
715 This function returns @code{t} if the file @var{filename1} is
716 newer than file @var{filename2}.  If @var{filename1} does not
717 exist, it returns @code{nil}.  If @var{filename2} does not exist,
718 it returns @code{t}.
720 In the following example, assume that the file @file{aug-19} was written
721 on the 19th, @file{aug-20} was written on the 20th, and the file
722 @file{no-file} doesn't exist at all.
724 @example
725 @group
726 (file-newer-than-file-p "aug-19" "aug-20")
727      @result{} nil
728 @end group
729 @group
730 (file-newer-than-file-p "aug-20" "aug-19")
731      @result{} t
732 @end group
733 @group
734 (file-newer-than-file-p "aug-19" "no-file")
735      @result{} t
736 @end group
737 @group
738 (file-newer-than-file-p "no-file" "aug-19")
739      @result{} nil
740 @end group
741 @end example
743 You can use @code{file-attributes} to get a file's last modification
744 time as a list of two numbers.  @xref{File Attributes}.
745 @end defun
747 @node Kinds of Files
748 @comment  node-name,  next,  previous,  up
749 @subsection Distinguishing Kinds of Files
751   This section describes how to distinguish various kinds of files, such
752 as directories, symbolic links, and ordinary files.
754 @defun file-symlink-p filename
755 @cindex file symbolic links
756 If the file @var{filename} is a symbolic link, the @code{file-symlink-p}
757 function returns the file name to which it is linked.  This may be the
758 name of a text file, a directory, or even another symbolic link, or it
759 may be a nonexistent file name.
761 If the file @var{filename} is not a symbolic link (or there is no such file),
762 @code{file-symlink-p} returns @code{nil}.  
764 @example
765 @group
766 (file-symlink-p "foo")
767      @result{} nil
768 @end group
769 @group
770 (file-symlink-p "sym-link")
771      @result{} "foo"
772 @end group
773 @group
774 (file-symlink-p "sym-link2")
775      @result{} "sym-link"
776 @end group
777 @group
778 (file-symlink-p "/bin")
779      @result{} "/pub/bin"
780 @end group
781 @end example
783 @c !!! file-symlink-p: should show output of ls -l for comparison
784 @end defun
786 @defun file-directory-p filename
787 This function returns @code{t} if @var{filename} is the name of an
788 existing directory, @code{nil} otherwise.
790 @example
791 @group
792 (file-directory-p "~rms")
793      @result{} t
794 @end group
795 @group
796 (file-directory-p "~rms/lewis/files.texi")
797      @result{} nil
798 @end group
799 @group
800 (file-directory-p "~rms/lewis/no-such-file")
801      @result{} nil
802 @end group
803 @group
804 (file-directory-p "$HOME")
805      @result{} nil
806 @end group
807 @group
808 (file-directory-p
809  (substitute-in-file-name "$HOME"))
810      @result{} t
811 @end group
812 @end example
813 @end defun
815 @defun file-regular-p filename
816 This function returns @code{t} if the file @var{filename} exists and is
817 a regular file (not a directory, symbolic link, named pipe, terminal, or
818 other I/O device).
819 @end defun
821 @node Truenames
822 @subsection Truenames
823 @cindex truename (of file)
825 @c Emacs 19 features
826   The @dfn{truename} of a file is the name that you get by following
827 symbolic links until none remain, then expanding to get rid of @samp{.}
828 and @samp{..} as components.  Strictly speaking, a file need not have a
829 unique truename; the number of distinct truenames a file has is equal to
830 the number of hard links to the file.  However, truenames are useful
831 because they eliminate symbolic links as a cause of name variation.
833 @defun file-truename filename
834 The function @code{file-truename} returns the true name of the file
835 @var{filename}.  This is the name that you get by following symbolic
836 links until none remain.  The argument must be an absolute file name.
837 @end defun
839   @xref{Buffer File Name}, for related information.
841 @node File Attributes
842 @comment  node-name,  next,  previous,  up
843 @subsection Other Information about Files
845   This section describes the functions for getting detailed information
846 about a file, other than its contents.  This information includes the
847 mode bits that control access permission, the owner and group numbers,
848 the number of names, the inode number, the size, and the times of access
849 and modification.
851 @defun file-modes filename
852 @cindex permission
853 @cindex file attributes
854 This function returns the mode bits of @var{filename}, as an integer.
855 The mode bits are also called the file permissions, and they specify
856 access control in the usual Unix fashion.  If the low-order bit is 1,
857 then the file is executable by all users, if the second-lowest-order bit
858 is 1, then the file is writable by all users, etc.
860 The highest value returnable is 4095 (7777 octal), meaning that
861 everyone has read, write, and execute permission, that the @sc{suid} bit
862 is set for both others and group, and that the sticky bit is set.
864 @example
865 @group
866 (file-modes "~/junk/diffs")
867      @result{} 492               ; @r{Decimal integer.}
868 @end group
869 @group
870 (format "%o" 492)
871      @result{} "754"             ; @r{Convert to octal.}
872 @end group
874 @group
875 (set-file-modes "~/junk/diffs" 438)
876      @result{} nil
877 @end group
879 @group
880 (format "%o" 438)
881      @result{} "666"             ; @r{Convert to octal.}
882 @end group
884 @group
885 % ls -l diffs
886   -rw-rw-rw-  1 lewis 0 3063 Oct 30 16:00 diffs
887 @end group
888 @end example
889 @end defun
891 @defun file-nlinks filename
892 This functions returns the number of names (i.e., hard links) that
893 file @var{filename} has.  If the file does not exist, then this function
894 returns @code{nil}.  Note that symbolic links have no effect on this
895 function, because they are not considered to be names of the files they
896 link to.
898 @example
899 @group
900 % ls -l foo*
901 -rw-rw-rw-  2 rms       4 Aug 19 01:27 foo
902 -rw-rw-rw-  2 rms       4 Aug 19 01:27 foo1
903 @end group
905 @group
906 (file-nlinks "foo")
907      @result{} 2
908 @end group
909 @group
910 (file-nlinks "doesnt-exist")
911      @result{} nil
912 @end group
913 @end example
914 @end defun
916 @defun file-attributes filename
917 This function returns a list of attributes of file @var{filename}.  If
918 the specified file cannot be opened, it returns @code{nil}.
920 The elements of the list, in order, are:
922 @enumerate 0
923 @item
924 @code{t} for a directory, a string for a symbolic link (the name
925 linked to), or @code{nil} for a text file.
927 @c Wordy so as to prevent an overfull hbox.  --rjc 15mar92
928 @item
929 The number of names the file has.  Alternate names, also known as hard
930 links, can be created by using the @code{add-name-to-file} function
931 (@pxref{Changing File Attributes}).
933 @item
934 The file's @sc{uid}.
936 @item
937 The file's @sc{gid}.
939 @item
940 The time of last access, as a list of two integers.
941 The first integer has the high-order 16 bits of time,
942 the second has the low 16 bits.  (This is similar to the
943 value of @code{current-time}; see @ref{Time of Day}.)
945 @item
946 The time of last modification as a list of two integers (as above).
948 @item
949 The time of last status change as a list of two integers (as above).
951 @item
952 The size of the file in bytes.
954 @item
955 The file's modes, as a string of ten letters or dashes,
956 as in @samp{ls -l}.
958 @item
959 @code{t} if the file's @sc{gid} would change if file were
960 deleted and recreated; @code{nil} otherwise.
962 @item
963 The file's inode number.
965 @item
966 The file system number of the file system that the file is in.  This
967 element and the file's inode number together give enough information to
968 distinguish any two files on the system---no two files can have the same
969 values for both of these numbers.
970 @end enumerate
972 For example, here are the file attributes for @file{files.texi}:
974 @example
975 @group
976 (file-attributes "files.texi")
977      @result{}  (nil 
978           1 
979           2235 
980           75 
981           (8489 20284) 
982           (8489 20284) 
983           (8489 20285)
984           14906 
985           "-rw-rw-rw-" 
986           nil 
987           129500
988           -32252)
989 @end group
990 @end example
992 @noindent
993 and here is how the result is interpreted:
995 @table @code
996 @item nil
997 is neither a directory nor a symbolic link.
999 @item 1
1000 has only one name (the name @file{files.texi} in the current default
1001 directory).
1003 @item 2235
1004 is owned by the user with @sc{uid} 2235.
1006 @item 75
1007 is in the group with @sc{gid} 75.
1009 @item (8489 20284)
1010 was last accessed on Aug 19 00:09.
1012 @item (8489 20284)
1013 was last modified on Aug 19 00:09.
1015 @item (8489 20285)
1016 last had its inode changed on Aug 19 00:09.
1018 @item 14906
1019 is 14906 characters long.
1021 @item "-rw-rw-rw-"
1022 has a mode of read and write access for the owner, group, and world.
1024 @item nil
1025 would retain the same @sc{gid} if it were recreated.
1027 @item 129500
1028 has an inode number of 129500.
1029 @item -32252
1030 is on file system number -32252.
1031 @end table
1032 @end defun
1034 @node Changing File Attributes
1035 @section Changing File Names and Attributes
1036 @cindex renaming files
1037 @cindex copying files
1038 @cindex deleting files
1039 @cindex linking files
1040 @cindex setting modes of files
1042   The functions in this section rename, copy, delete, link, and set the
1043 modes of files.
1045   In the functions that have an argument @var{newname}, if a file by the
1046 name of @var{newname} already exists, the actions taken depend on the
1047 value of the argument @var{ok-if-already-exists}:
1049 @itemize @bullet
1050 @item
1051 Signal a @code{file-already-exists} error if
1052 @var{ok-if-already-exists} is @code{nil}.
1054 @item
1055 Request confirmation if @var{ok-if-already-exists} is a number.
1057 @item
1058 Replace the old file without confirmation if @var{ok-if-already-exists}
1059 is any other value.
1060 @end itemize
1062 @defun add-name-to-file oldname newname &optional ok-if-already-exists
1063 @cindex file with multiple names
1064 @cindex file hard link
1065 This function gives the file named @var{oldname} the additional name
1066 @var{newname}.  This means that @var{newname} becomes a new ``hard
1067 link'' to @var{oldname}.
1069 In the first part of the following example, we list two files,
1070 @file{foo} and @file{foo3}.
1072 @example
1073 @group
1074 % ls -l fo*
1075 -rw-rw-rw-  1 rms       29 Aug 18 20:32 foo
1076 -rw-rw-rw-  1 rms       24 Aug 18 20:31 foo3
1077 @end group
1078 @end example
1080 Then we evaluate the form @code{(add-name-to-file "~/lewis/foo"
1081 "~/lewis/foo2")}.  Again we list the files.  This shows two names,
1082 @file{foo} and @file{foo2}.
1084 @example
1085 @group
1086 (add-name-to-file "~/lewis/foo1" "~/lewis/foo2")
1087      @result{} nil
1088 @end group
1090 @group
1091 % ls -l fo*
1092 -rw-rw-rw-  2 rms       29 Aug 18 20:32 foo
1093 -rw-rw-rw-  2 rms       29 Aug 18 20:32 foo2
1094 -rw-rw-rw-  1 rms       24 Aug 18 20:31 foo3
1095 @end group
1096 @end example
1098 @c !!! Check whether this set of examples is consistent.  --rjc 15mar92
1099   Finally, we evaluate the following:
1101 @example
1102 (add-name-to-file "~/lewis/foo" "~/lewis/foo3" t)
1103 @end example
1105 @noindent
1106 and list the files again.  Now there are three names
1107 for one file: @file{foo}, @file{foo2}, and @file{foo3}.  The old
1108 contents of @file{foo3} are lost.
1110 @example
1111 @group
1112 (add-name-to-file "~/lewis/foo1" "~/lewis/foo3")
1113      @result{} nil
1114 @end group
1116 @group
1117 % ls -l fo*
1118 -rw-rw-rw-  3 rms       29 Aug 18 20:32 foo
1119 -rw-rw-rw-  3 rms       29 Aug 18 20:32 foo2
1120 -rw-rw-rw-  3 rms       29 Aug 18 20:32 foo3
1121 @end group
1122 @end example
1124   This function is meaningless on VMS, where multiple names for one file
1125 are not allowed.
1127   See also @code{file-nlinks} in @ref{File Attributes}.
1128 @end defun
1130 @deffn Command rename-file filename newname &optional ok-if-already-exists
1131 This command renames the file @var{filename} as @var{newname}.
1133 If @var{filename} has additional names aside from @var{filename}, it
1134 continues to have those names.  In fact, adding the name @var{newname}
1135 with @code{add-name-to-file} and then deleting @var{filename} has the
1136 same effect as renaming, aside from momentary intermediate states.
1138 In an interactive call, this function prompts for @var{filename} and
1139 @var{newname} in the minibuffer; also, it requests confirmation if
1140 @var{newname} already exists.
1141 @end deffn
1143 @deffn Command copy-file oldname newname &optional ok-if-exists time
1144 This command copies the file @var{oldname} to @var{newname}.  An
1145 error is signaled if @var{oldname} does not exist.
1147 If @var{time} is non-@code{nil}, then this functions gives the new
1148 file the same last-modified time that the old one has.  (This works on
1149 only some operating systems.)
1151 In an interactive call, this function prompts for @var{filename} and
1152 @var{newname} in the minibuffer; also, it requests confirmation if
1153 @var{newname} already exists.
1154 @end deffn
1156 @deffn Command delete-file filename
1157 @pindex rm
1158 This command deletes the file @var{filename}, like the shell command
1159 @samp{rm @var{filename}}.  If the file has multiple names, it continues
1160 to exist under the other names.
1162 A suitable kind of @code{file-error} error is signaled if the file
1163 does not exist, or is not deletable.  (On Unix, a file is deletable if
1164 its directory is writable.)
1166 See also @code{delete-directory} in @ref{Create/Delete Dirs}.
1167 @end deffn
1169 @deffn Command make-symbolic-link filename newname  &optional ok-if-exists
1170 @pindex ln
1171 @kindex file-already-exists
1172 This command makes a symbolic link to @var{filename}, named
1173 @var{newname}.  This is like the shell command @samp{ln -s
1174 @var{filename} @var{newname}}.
1176 In an interactive call, this function prompts for @var{filename} and
1177 @var{newname} in the minibuffer; also, it requests confirmation if
1178 @var{newname} already exists.
1179 @end deffn
1181 @defun define-logical-name varname string
1182 This function defines the logical name @var{name} to have the value
1183 @var{string}.  It is available only on VMS.
1184 @end defun
1186 @defun set-file-modes filename mode
1187 This function sets mode bits of @var{filename} to @var{mode} (which must
1188 be an integer).  Only the low 12 bits of @var{mode} are used.
1189 @end defun
1191 @c Emacs 19 feature
1192 @defun set-default-file-modes mode
1193 This function sets the default file protection for new files created by
1194 Emacs and its subprocesses.  Every file created with Emacs initially has
1195 this protection.  On Unix, the default protection is the bitwise
1196 complement of the ``umask'' value.
1198 The argument @var{mode} must be an integer.  Only the low 9 bits of
1199 @var{mode} are used.
1201 Saving a modified version of an existing file does not count as creating
1202 the file; it does not change the file's mode, and does not use the
1203 default file protection.
1204 @end defun
1206 @defun default-file-modes
1207 This function returns the current default protection value.
1208 @end defun
1210 @cindex MS-DOS and file modes
1211 @cindex file modes and MS-DOS
1212   On MS-DOS, there is no such thing as an ``executable'' file mode bit.
1213 So Emacs considers a file executable if its name ends in @samp{.com},
1214 @samp{.bat} or @samp{.exe}.  This is reflected in the values returned
1215 by @code{file-modes} and @code{file-attributes}.
1217 @node File Names
1218 @section File Names
1219 @cindex file names
1221   Files are generally referred to by their names, in Emacs as elsewhere.
1222 File names in Emacs are represented as strings.  The functions that
1223 operate on a file all expect a file name argument.
1225   In addition to operating on files themselves, Emacs Lisp programs
1226 often need to operate on the names; i.e., to take them apart and to use
1227 part of a name to construct related file names.  This section describes
1228 how to manipulate file names.
1230   The functions in this section do not actually access files, so they
1231 can operate on file names that do not refer to an existing file or
1232 directory.
1234   On VMS, all these functions understand both VMS file-name syntax and
1235 Unix syntax.  This is so that all the standard Lisp libraries can
1236 specify file names in Unix syntax and work properly on VMS without
1237 change.  On MS-DOS, these functions understand MS-DOS file-name syntax
1238 as well as Unix syntax.
1240 @menu
1241 * File Name Components::  The directory part of a file name, and the rest.
1242 * Directory Names::       A directory's name as a directory
1243                             is different from its name as a file.
1244 * Relative File Names::   Some file names are relative to a current directory.
1245 * File Name Expansion::   Converting relative file names to absolute ones.
1246 * Unique File Names::     Generating names for temporary files.
1247 * File Name Completion::  Finding the completions for a given file name.
1248 * Standard File Names::   If your package uses a fixed file name,
1249                             how to handle various operating systems simply.
1250 @end menu
1252 @node File Name Components
1253 @subsection File Name Components
1254 @cindex directory part (of file name)
1255 @cindex nondirectory part (of file name)
1256 @cindex version number (in file name)
1258   The operating system groups files into directories.  To specify a
1259 file, you must specify the directory and the file's name within that
1260 directory.  Therefore, Emacs considers a file name as having two main
1261 parts: the @dfn{directory name} part, and the @dfn{nondirectory} part
1262 (or @dfn{file name within the directory}).  Either part may be empty.
1263 Concatenating these two parts reproduces the original file name.
1265   On Unix, the directory part is everything up to and including the last
1266 slash; the nondirectory part is the rest.  The rules in VMS syntax are
1267 complicated.
1269   For some purposes, the nondirectory part is further subdivided into
1270 the name proper and the @dfn{version number}.  On Unix, only backup
1271 files have version numbers in their names; on VMS, every file has a
1272 version number, but most of the time the file name actually used in
1273 Emacs omits the version number.  Version numbers are found mostly in
1274 directory lists.
1276 @defun file-name-directory filename
1277   This function returns the directory part of @var{filename} (or
1278 @code{nil} if @var{filename} does not include a directory part).  On
1279 Unix, the function returns a string ending in a slash.  On VMS, it
1280 returns a string ending in one of the three characters @samp{:},
1281 @samp{]}, or @samp{>}.
1283 @example
1284 @group
1285 (file-name-directory "lewis/foo")  ; @r{Unix example}
1286      @result{} "lewis/"
1287 @end group
1288 @group
1289 (file-name-directory "foo")        ; @r{Unix example}
1290      @result{} nil
1291 @end group
1292 @group
1293 (file-name-directory "[X]FOO.TMP") ; @r{VMS example}
1294      @result{} "[X]"
1295 @end group
1296 @end example
1297 @end defun
1299 @defun file-name-nondirectory filename
1300   This function returns the nondirectory part of @var{filename}.
1302 @example
1303 @group
1304 (file-name-nondirectory "lewis/foo")
1305      @result{} "foo"
1306 @end group
1307 @group
1308 (file-name-nondirectory "foo")
1309      @result{} "foo"
1310 @end group
1311 @group
1312 ;; @r{The following example is accurate only on VMS.}
1313 (file-name-nondirectory "[X]FOO.TMP")
1314      @result{} "FOO.TMP"
1315 @end group
1316 @end example
1317 @end defun
1319 @defun file-name-sans-versions filename
1320   This function returns @var{filename} without any file version numbers,
1321 backup version numbers, or trailing tildes.
1323 @example
1324 @group
1325 (file-name-sans-versions "~rms/foo.~1~")
1326      @result{} "~rms/foo"
1327 @end group
1328 @group
1329 (file-name-sans-versions "~rms/foo~")
1330      @result{} "~rms/foo"
1331 @end group
1332 @group
1333 (file-name-sans-versions "~rms/foo")
1334      @result{} "~rms/foo"
1335 @end group
1336 @group
1337 ;; @r{The following example applies to VMS only.}
1338 (file-name-sans-versions "foo;23")
1339      @result{} "foo"
1340 @end group
1341 @end example
1342 @end defun
1344 @defun file-name-sans-extension filename
1345 This function returns @var{filename} minus its ``extension,'' if any.
1346 The extension, in a file name, is the part that starts with the last
1347 @samp{.} in the last name component.  For example,
1349 @example
1350 (file-name-sans-extension "foo.lose.c")
1351      @result{} "foo.lose"
1352 (file-name-sans-extension "big.hack/foo")
1353      @result{} "big.hack/foo"
1354 @end example
1355 @end defun
1357 @node Directory Names
1358 @comment  node-name,  next,  previous,  up
1359 @subsection Directory Names
1360 @cindex directory name
1361 @cindex file name of directory
1363   A @dfn{directory name} is the name of a directory.  A directory is a
1364 kind of file, and it has a file name, which is related to the directory
1365 name but not identical to it.  (This is not quite the same as the usual
1366 Unix terminology.)  These two different names for the same entity are
1367 related by a syntactic transformation.  On Unix, this is simple: a
1368 directory name ends in a slash, whereas the directory's name as a file
1369 lacks that slash.  On VMS, the relationship is more complicated.
1371   The difference between a directory name and its name as a file is
1372 subtle but crucial.  When an Emacs variable or function argument is
1373 described as being a directory name, a file name of a directory is not
1374 acceptable.
1376   The following two functions convert between directory names and file
1377 names.  They do nothing special with environment variable substitutions
1378 such as @samp{$HOME}, and the constructs @samp{~}, and @samp{..}.
1380 @defun file-name-as-directory filename
1381 This function returns a string representing @var{filename} in a form
1382 that the operating system will interpret as the name of a directory.  In
1383 Unix, this means appending a slash to the string.  On VMS, the function
1384 converts a string of the form @file{[X]Y.DIR.1} to the form
1385 @file{[X.Y]}.
1387 @example
1388 @group
1389 (file-name-as-directory "~rms/lewis")
1390      @result{} "~rms/lewis/"
1391 @end group
1392 @end example
1393 @end defun
1395 @defun directory-file-name dirname
1396 This function returns a string representing @var{dirname} in a form
1397 that the operating system will interpret as the name of a file.  On
1398 Unix, this means removing a final slash from the string.  On VMS, the
1399 function converts a string of the form @file{[X.Y]} to
1400 @file{[X]Y.DIR.1}.
1402 @example
1403 @group
1404 (directory-file-name "~lewis/")
1405      @result{} "~lewis"
1406 @end group
1407 @end example
1408 @end defun
1410 @cindex directory name abbreviation
1411   Directory name abbreviations are useful for directories that are
1412 normally accessed through symbolic links.  Sometimes the users recognize
1413 primarily the link's name as ``the name'' of the directory, and find it
1414 annoying to see the directory's ``real'' name.  If you define the link
1415 name as an abbreviation for the ``real'' name, Emacs shows users the
1416 abbreviation instead.
1418 @defvar directory-abbrev-alist
1419 The variable @code{directory-abbrev-alist} contains an alist of
1420 abbreviations to use for file directories.  Each element has the form
1421 @code{(@var{from} . @var{to})}, and says to replace @var{from} with
1422 @var{to} when it appears in a directory name.  The @var{from} string is
1423 actually a regular expression; it should always start with @samp{^}.
1424 The function @code{abbreviate-file-name} performs these substitutions.
1426 You can set this variable in @file{site-init.el} to describe the
1427 abbreviations appropriate for your site.
1429 Here's an example, from a system on which file system @file{/home/fsf}
1430 and so on are normally accessed through symbolic links named @file{/fsf}
1431 and so on.
1433 @example
1434 (("^/home/fsf" . "/fsf")
1435  ("^/home/gp" . "/gp")
1436  ("^/home/gd" . "/gd"))
1437 @end example
1438 @end defvar
1440   To convert a directory name to its abbreviation, use this
1441 function:
1443 @defun abbreviate-file-name dirname
1444 This function applies abbreviations from @code{directory-abbrev-alist}
1445 to its argument, and substitutes @samp{~} for the user's home
1446 directory.
1447 @end defun
1449 @node Relative File Names
1450 @subsection Absolute and Relative File Names
1451 @cindex absolute file name
1452 @cindex relative file name
1454   All the directories in the file system form a tree starting at the
1455 root directory.  A file name can specify all the directory names
1456 starting from the root of the tree; then it is called an @dfn{absolute}
1457 file name.  Or it can specify the position of the file in the tree
1458 relative to a default directory; then it is called a @dfn{relative}
1459 file name.  On Unix, an absolute file name starts with a slash or a
1460 tilde (@samp{~}), and a relative one does not.  The rules on VMS are
1461 complicated.
1463 @defun file-name-absolute-p filename
1464 This function returns @code{t} if file @var{filename} is an absolute
1465 file name, @code{nil} otherwise.  On VMS, this function understands both
1466 Unix syntax and VMS syntax.
1468 @example
1469 @group
1470 (file-name-absolute-p "~rms/foo")
1471      @result{} t
1472 @end group
1473 @group
1474 (file-name-absolute-p "rms/foo")
1475      @result{} nil
1476 @end group
1477 @group
1478 (file-name-absolute-p "/user/rms/foo")
1479      @result{} t
1480 @end group
1481 @end example
1482 @end defun
1484 @node File Name Expansion
1485 @subsection Functions that Expand Filenames
1486 @cindex expansion of file names
1488   @dfn{Expansion} of a file name means converting a relative file name
1489 to an absolute one.  Since this is done relative to a default directory,
1490 you must specify the default directory name as well as the file name to
1491 be expanded.  Expansion also simplifies file names by eliminating
1492 redundancies such as @file{./} and @file{@var{name}/../}.
1494 @defun expand-file-name filename &optional directory
1495 This function converts @var{filename} to an absolute file name.  If
1496 @var{directory} is supplied, it is the directory to start with if
1497 @var{filename} is relative.  (The value of @var{directory} should itself
1498 be an absolute directory name; it may start with @samp{~}.)
1499 Otherwise, the current buffer's value of @code{default-directory} is
1500 used.  For example:
1502 @example
1503 @group
1504 (expand-file-name "foo")
1505      @result{} "/xcssun/users/rms/lewis/foo"
1506 @end group
1507 @group
1508 (expand-file-name "../foo")
1509      @result{} "/xcssun/users/rms/foo"
1510 @end group
1511 @group
1512 (expand-file-name "foo" "/usr/spool/")
1513      @result{} "/usr/spool/foo"
1514 @end group
1515 @group
1516 (expand-file-name "$HOME/foo")
1517      @result{} "/xcssun/users/rms/lewis/$HOME/foo"
1518 @end group
1519 @end example
1521 Filenames containing @samp{.} or @samp{..} are simplified to their
1522 canonical form:
1524 @example
1525 @group
1526 (expand-file-name "bar/../foo")
1527      @result{} "/xcssun/users/rms/lewis/foo"
1528 @end group
1529 @end example
1531 @samp{~/} is expanded into the user's home directory.  A @samp{/} or
1532 @samp{~} following a @samp{/} is taken to be the start of an absolute
1533 file name that overrides what precedes it, so everything before that
1534 @samp{/} or @samp{~} is deleted.  For example:
1536 @example
1537 @group
1538 (expand-file-name 
1539  "/a1/gnu//usr/local/lib/emacs/etc/MACHINES")
1540      @result{} "/usr/local/lib/emacs/etc/MACHINES"
1541 @end group
1542 @group
1543 (expand-file-name "/a1/gnu/~/foo")
1544      @result{} "/xcssun/users/rms/foo"
1545 @end group
1546 @end example
1548 @noindent
1549 In both cases, @file{/a1/gnu/} is discarded because an absolute file
1550 name follows it.
1552 Note that @code{expand-file-name} does @emph{not} expand environment
1553 variables; only @code{substitute-in-file-name} does that.
1554 @end defun
1556 @c Emacs 19 feature
1557 @defun file-relative-name filename directory
1558 This function does the inverse of expansion---it tries to return a
1559 relative name that is equivalent to @var{filename} when interpreted
1560 relative to @var{directory}.  (If such a relative name would be longer
1561 than the absolute name, it returns the absolute name instead.)
1563 @example
1564 (file-relative-name "/foo/bar" "/foo/")
1565      @result{} "bar")
1566 (file-relative-name "/foo/bar" "/hack/")
1567      @result{} "/foo/bar")
1568 @end example
1569 @end defun
1571 @defvar default-directory
1572 The value of this buffer-local variable is the default directory for the
1573 current buffer.  It should be an absolute directory name; it may start
1574 with @samp{~}.  This variable is local in every buffer.
1576 @code{expand-file-name} uses the default directory when its second
1577 argument is @code{nil}.
1579 On Unix systems, the value is always a string ending with a slash.
1581 @example
1582 @group
1583 default-directory
1584      @result{} "/user/lewis/manual/"
1585 @end group
1586 @end example
1587 @end defvar
1589 @defun substitute-in-file-name filename
1590 This function replaces environment variables references in
1591 @var{filename} with the environment variable values.  Following standard
1592 Unix shell syntax, @samp{$} is the prefix to substitute an environment
1593 variable value.
1595 The environment variable name is the series of alphanumeric characters
1596 (including underscores) that follow the @samp{$}.  If the character following
1597 the @samp{$} is a @samp{@{}, then the variable name is everything up to the
1598 matching @samp{@}}.
1600 @c Wordy to avoid overfull hbox.  --rjc 15mar92
1601 Here we assume that the environment variable @code{HOME}, which holds
1602 the user's home directory name, has value @samp{/xcssun/users/rms}.
1604 @example
1605 @group
1606 (substitute-in-file-name "$HOME/foo")
1607      @result{} "/xcssun/users/rms/foo"
1608 @end group
1609 @end example
1611 If a @samp{~} or a @samp{/} appears following a @samp{/}, after
1612 substitution, everything before the following @samp{/} is discarded:
1614 @example
1615 @group
1616 (substitute-in-file-name "bar/~/foo")
1617      @result{} "~/foo"
1618 @end group
1619 @group
1620 (substitute-in-file-name "/usr/local/$HOME/foo")
1621      @result{} "/xcssun/users/rms/foo"
1622 @end group
1623 @end example
1625 On VMS, @samp{$} substitution is not done, so this function does nothing
1626 on VMS except discard superfluous initial components as shown above.
1627 @end defun
1629 @node Unique File Names
1630 @subsection Generating Unique File Names
1632   Some programs need to write temporary files.  Here is the usual way to
1633 construct a name for such a file:
1635 @example
1636 (make-temp-name (concat "/tmp/" @var{name-of-application}))
1637 @end example
1639 @noindent
1640 Here we use the directory @file{/tmp/} because that is the standard
1641 place on Unix for temporary files.  The job of @code{make-temp-name} is
1642 to prevent two different users or two different jobs from trying to use
1643 the same name.
1645 @defun make-temp-name string
1646 This function generates string that can be used as a unique name.  The
1647 name starts with @var{string}, and ends with a number that is different
1648 in each Emacs job.
1650 @example
1651 @group
1652 (make-temp-name "/tmp/foo")
1653      @result{} "/tmp/foo021304"
1654 @end group
1655 @end example
1657 To prevent conflicts among different libraries running in the same
1658 Emacs, each Lisp program that uses @code{make-temp-name} should have its
1659 own @var{string}.  The number added to the end of the name distinguishes
1660 between the same application running in different Emacs jobs.
1661 @end defun
1663 @node File Name Completion
1664 @subsection File Name Completion
1665 @cindex file name completion subroutines
1666 @cindex completion, file name
1668   This section describes low-level subroutines for completing a file
1669 name.  For other completion functions, see @ref{Completion}.
1671 @defun file-name-all-completions partial-filename directory
1672 This function returns a list of all possible completions for a file
1673 whose name starts with @var{partial-filename} in directory
1674 @var{directory}.  The order of the completions is the order of the files
1675 in the directory, which is unpredictable and conveys no useful
1676 information.
1678 The argument @var{partial-filename} must be a file name containing no
1679 directory part and no slash.  The current buffer's default directory is
1680 prepended to @var{directory}, if @var{directory} is not absolute.
1682 In the following example, suppose that the current default directory,
1683 @file{~rms/lewis}, has five files whose names begin with @samp{f}:
1684 @file{foo}, @file{file~}, @file{file.c}, @file{file.c.~1~}, and
1685 @file{file.c.~2~}.@refill
1687 @example
1688 @group
1689 (file-name-all-completions "f" "")
1690      @result{} ("foo" "file~" "file.c.~2~" 
1691                 "file.c.~1~" "file.c")
1692 @end group
1694 @group
1695 (file-name-all-completions "fo" "")  
1696      @result{} ("foo")
1697 @end group
1698 @end example
1699 @end defun
1701 @defun file-name-completion filename directory
1702 This function completes the file name @var{filename} in directory
1703 @var{directory}.  It returns the longest prefix common to all file names
1704 in directory @var{directory} that start with @var{filename}.
1706 If only one match exists and @var{filename} matches it exactly, the
1707 function returns @code{t}.  The function returns @code{nil} if directory
1708 @var{directory} contains no name starting with @var{filename}.
1710 In the following example, suppose that the current default directory
1711 has five files whose names begin with @samp{f}: @file{foo},
1712 @file{file~}, @file{file.c}, @file{file.c.~1~}, and
1713 @file{file.c.~2~}.@refill
1715 @example
1716 @group
1717 (file-name-completion "fi" "")
1718      @result{} "file"
1719 @end group
1721 @group
1722 (file-name-completion "file.c.~1" "")
1723      @result{} "file.c.~1~"
1724 @end group
1726 @group
1727 (file-name-completion "file.c.~1~" "")
1728      @result{} t
1729 @end group
1731 @group
1732 (file-name-completion "file.c.~3" "")
1733      @result{} nil
1734 @end group
1735 @end example
1736 @end defun
1738 @defopt completion-ignored-extensions
1739 @code{file-name-completion} usually ignores file names that end in any
1740 string in this list.  It does not ignore them when all the possible
1741 completions end in one of these suffixes or when a buffer showing all
1742 possible completions is displayed.@refill
1744 A typical value might look like this:
1746 @example
1747 @group
1748 completion-ignored-extensions
1749      @result{} (".o" ".elc" "~" ".dvi")
1750 @end group
1751 @end example
1752 @end defopt
1754 @node Standard File Names
1755 @subsection Standard File Names
1757   Most of the file names used in Lisp programs are entered by the user.
1758 But occasionally a Lisp program needs to specify a standard file name
1759 for a particular use---typically, to hold customization information
1760 about each user.  For example, abbrev definitions are stored (by
1761 default) in the file @file{~/.abbrev_defs}; the @code{completion}
1762 package stores completions in the file @file{~/.completions}.  These are
1763 two of the many standard file names used by parts of Emacs for certain
1764 purposes.
1766   Various operating systems have their own conventions for valid file
1767 names and for which file names to use for user profile data.  A Lisp
1768 program which reads a file using a standard file name ought to use, on
1769 each type of system, a file name suitable for that system.  The function
1770 @code{convert-standard-filename} makes this easy to do.
1772 @defun convert-standard-filename filename
1773 This function alters the file name @var{filename} to fit the conventions
1774 of the operating system in use, and returns the result as a new string.
1775 @end defun
1777   The recommended way to specify a standard file name in a Lisp program
1778 is to choose a name which fits the conventions of GNU and Unix systems,
1779 usually with a nondirectory part that starts with a period, and pass it
1780 to @code{convert-standard-filename} instead of using it directly.  Here
1781 is an example from the @code{completion} package:
1783 @example
1784 (defvar save-completions-file-name
1785         (convert-standard-filename "~/.completions")
1786   "*The file name to save completions to.")
1787 @end example
1789   On GNU and Unix systems, and on some other systems as well,
1790 @code{convert-standard-filename} returns its argument unchanged.  On
1791 some other systems, it alters the name to fit the systems's conventions.
1793   For example, on MS-DOS the alterations made by this function include
1794 converting a leading @samp{.}  to @samp{_}, converting a @samp{_} in the
1795 middle of the name to @samp{.} if there is no other @samp{.}, inserting
1796 a @samp{.} after eight characters if there is none, and truncating to
1797 three characters after the @samp{.}.  (It makes other changes as well.)
1798 Thus, @file{.abbrev_defs} becomes @file{_abbrev.def}, and
1799 @file{.completions} becomes @file{_complet.ion}.
1801 @node Contents of Directories
1802 @section Contents of Directories
1803 @cindex directory-oriented functions
1804 @cindex file names in directory
1806   A directory is a kind of file that contains other files entered under
1807 various names.  Directories are a feature of the file system.
1809   Emacs can list the names of the files in a directory as a Lisp list,
1810 or display the names in a buffer using the @code{ls} shell command.  In
1811 the latter case, it can optionally display information about each file,
1812 depending on the options passed to the @code{ls} command.
1814 @defun directory-files directory &optional full-name match-regexp nosort
1815 This function returns a list of the names of the files in the directory
1816 @var{directory}.  By default, the list is in alphabetical order.
1818 If @var{full-name} is non-@code{nil}, the function returns the files'
1819 absolute file names.  Otherwise, it returns the names relative to
1820 the specified directory.
1822 If @var{match-regexp} is non-@code{nil}, this function returns only
1823 those file names that contain a match for that regular expression---the
1824 other file names are excluded from the list.
1826 @c Emacs 19 feature
1827 If @var{nosort} is non-@code{nil}, @code{directory-files} does not sort
1828 the list, so you get the file names in no particular order.  Use this if
1829 you want the utmost possible speed and don't care what order the files
1830 are processed in.  If the order of processing is visible to the user,
1831 then the user will probably be happier if you do sort the names.
1833 @example
1834 @group
1835 (directory-files "~lewis")
1836      @result{} ("#foo#" "#foo.el#" "." ".."
1837          "dired-mods.el" "files.texi" 
1838          "files.texi.~1~")
1839 @end group
1840 @end example
1842 An error is signaled if @var{directory} is not the name of a directory
1843 that can be read.
1844 @end defun
1846 @defun file-name-all-versions file dirname
1847 This function returns a list of all versions of the file named
1848 @var{file} in directory @var{dirname}.
1849 @end defun
1851 @defun insert-directory file switches &optional wildcard full-directory-p
1852 This function inserts (in the current buffer) a directory listing for
1853 directory @var{file}, formatted with @code{ls} according to
1854 @var{switches}.  It leaves point after the inserted text.
1856 The argument @var{file} may be either a directory name or a file
1857 specification including wildcard characters.  If @var{wildcard} is
1858 non-@code{nil}, that means treat @var{file} as a file specification with
1859 wildcards.
1861 If @var{full-directory-p} is non-@code{nil}, that means @var{file} is a
1862 directory and switches do not contain @samp{-d}, so that the listing
1863 should show the full contents of the directory.  (The @samp{-d} option
1864 to @code{ls} says to describe a directory itself rather than its
1865 contents.)
1867 This function works by running a directory listing program whose name is
1868 in the variable @code{insert-directory-program}.  If @var{wildcard} is
1869 non-@code{nil}, it also runs the shell specified by
1870 @code{shell-file-name}, to expand the wildcards.
1871 @end defun
1873 @defvar insert-directory-program
1874 This variable's value is the program to run to generate a directory listing
1875 for the function @code{insert-directory}.
1876 @end defvar
1878 @node Create/Delete Dirs
1879 @section Creating and Deleting Directories
1880 @c Emacs 19 features
1882   Most Emacs Lisp file-manipulation functions get errors when used on
1883 files that are directories.  For example, you cannot delete a directory
1884 with @code{delete-file}.  These special functions exist to create and
1885 delete directories.
1887 @defun make-directory dirname
1888 This function creates a directory named @var{dirname}.
1889 @end defun
1891 @defun delete-directory dirname
1892 This function deletes the directory named @var{dirname}.  The function
1893 @code{delete-file} does not work for files that are directories; you
1894 must use @code{delete-directory} for them.  If the directory contains
1895 any files, @code{delete-directory} signals an error.
1896 @end defun
1898 @node Magic File Names
1899 @section Making Certain File Names ``Magic''
1900 @cindex magic file names
1902 @c Emacs 19 feature
1903 You can implement special handling for certain file names.  This is
1904 called making those names @dfn{magic}.  You must supply a regular
1905 expression to define the class of names (all those that match the
1906 regular expression), plus a handler that implements all the primitive
1907 Emacs file operations for file names that do match.
1909 The variable @code{file-name-handler-alist} holds a list of handlers,
1910 together with regular expressions that determine when to apply each
1911 handler.  Each element has this form:
1913 @example
1914 (@var{regexp} . @var{handler})
1915 @end example
1917 @noindent
1918 All the Emacs primitives for file access and file name transformation
1919 check the given file name against @code{file-name-handler-alist}.  If
1920 the file name matches @var{regexp}, the primitives handle that file by
1921 calling @var{handler}.
1923 The first argument given to @var{handler} is the name of the primitive;
1924 the remaining arguments are the arguments that were passed to that
1925 operation.  (The first of these arguments is typically the file name
1926 itself.)  For example, if you do this:
1928 @example
1929 (file-exists-p @var{filename})
1930 @end example
1932 @noindent
1933 and @var{filename} has handler @var{handler}, then @var{handler} is
1934 called like this:
1936 @example
1937 (funcall @var{handler} 'file-exists-p @var{filename})
1938 @end example
1940 Here are the operations that a magic file name handler gets to handle:
1942 @noindent
1943 @code{add-name-to-file}, @code{copy-file}, @code{delete-directory},
1944 @code{delete-file},@*
1945 @code{diff-latest-backup-file},
1946 @code{directory-file-name},
1947 @code{directory-files}, @code{dired-call-process},
1948 @code{dired-compress-file}, @code{dired-uncache},
1949 @code{expand-file-name},@*
1950 @code{file-accessible-directory-p},
1951 @code{file-attributes}, @code{file-directory-p},
1952 @code{file-executable-p}, @code{file-exists-p}, @code{file-local-copy},
1953 @code{file-modes}, @code{file-name-all-completions},
1954 @code{file-name-as-directory}, @code{file-name-completion},
1955 @code{file-name-directory}, @code{file-name-nondirectory},
1956 @code{file-name-sans-versions}, @code{file-newer-than-file-p},
1957 @code{file-ownership-preserved-p},
1958 @code{file-readable-p}, @code{file-regular-p}, @code{file-symlink-p},
1959 @code{file-truename}, @code{file-writable-p},
1960 @code{find-backup-file-name},
1961 @code{get-file-buffer},
1962 @code{insert-directory}, @code{insert-file-contents},
1963 @code{load}, @code{make-directory},
1964 @code{make-symbolic-link}, @code{rename-file}, @code{set-file-modes},
1965 @code{set-visited-file-modtime}, @code{shell-command}.
1966 @code{unhandled-file-name-directory}, @code{vc-registered},
1967 @code{verify-visited-file-modtime}, @code{write-region}.
1969 Handlers for @code{insert-file-contents} typically need to clear the
1970 buffer's modified flag, with @code{(set-buffer-modified-p nil)}, if the
1971 @var{visit} argument is non-@code{nil}.  This also has the effect of
1972 unlocking the buffer if it is locked.
1974 The handler function must handle all of the above operations, and
1975 possibly others to be added in the future.  It need not implement all
1976 these operations itself---when it has nothing special to do for a
1977 certain operation, it can reinvoke the primitive, to handle the
1978 operation ``in the usual way''.  It should always reinvoke the primitive
1979 for an operation it does not recognize.  Here's one way to do this:
1981 @smallexample
1982 (defun my-file-handler (operation &rest args)
1983   ;; @r{First check for the specific operations}
1984   ;; @r{that we have special handling for.}
1985   (cond ((eq operation 'insert-file-contents) @dots{})
1986         ((eq operation 'write-region) @dots{})
1987         @dots{}
1988         ;; @r{Handle any operation we don't know about.}
1989         (t (let ((inhibit-file-name-handlers
1990                  (cons 'my-file-handler 
1991                        (and (eq inhibit-file-name-operation operation)
1992                             inhibit-file-name-handlers)))
1993                 (inhibit-file-name-operation operation))
1994              (apply operation args)))))
1995 @end smallexample
1997 When a handler function decides to call the ordinary Emacs primitive for
1998 the operation at hand, it needs to prevent the primitive from calling
1999 the same handler once again, thus leading to an infinite recursion.  The
2000 example above shows how to do this, with the variables
2001 @code{inhibit-file-name-handlers} and
2002 @code{inhibit-file-name-operation}.  Be careful to use them exactly as
2003 shown above; the details are crucial for proper behavior in the case of
2004 multiple handlers, and for operations that have two file names that may
2005 each have handlers.
2007 @defvar inhibit-file-name-handlers
2008 This variable holds a list of handlers whose use is presently inhibited
2009 for a certain operation.
2010 @end defvar
2012 @defvar inhibit-file-name-operation
2013 The operation for which certain handlers are presently inhibited.
2014 @end defvar
2016 @defun find-file-name-handler file operation
2017 This function returns the handler function for file name @var{file}, or
2018 @code{nil} if there is none.  The argument @var{operation} should be the
2019 operation to be performed on the file---the value you will pass to the
2020 handler as its first argument when you call it.  The operation is needed
2021 for comparison with @code{inhibit-file-name-operation}.
2022 @end defun
2024 @defun file-local-copy filename
2025 This function copies file @var{filename} to an ordinary non-magic file,
2026 if it isn't one already.
2028 If @var{filename} specifies a ``magic'' file name, which programs
2029 outside Emacs cannot directly read or write, this copies the contents to
2030 an ordinary file and returns that file's name.
2032 If @var{filename} is an ordinary file name, not magic, then this function
2033 does nothing and returns @code{nil}.
2034 @end defun
2036 @defun unhandled-file-name-directory filename
2037 This function returns the name of a directory that is not magic.
2038 It uses the directory part of @var{filename} if that is not magic.
2039 Otherwise, it asks the handler what to do.
2041 This is useful for running a subprocess; every subprocess must have a
2042 non-magic directory to serve as its current directory, and this function
2043 is a good way to come up with one.
2044 @end defun
2046 @node Format Conversion
2047 @section File Format Conversion
2049 @cindex file format conversion
2050 @cindex encoding file formats
2051 @cindex decoding file formats
2052   The variable @code{format-alist} defines a list of @dfn{file formats},
2053 which describe textual representations used in files for the data (text,
2054 text-properties, and possibly other information) in an Emacs buffer.
2055 Emacs performs format conversion if appropriate when reading and writing
2056 files.
2058 @defvar format-alist
2059 This list contains one format definition for each defined file format.
2060 @end defvar
2062 @cindex format definition
2063 Each format definition is a list of this form:
2065 @example
2066 (@var{name} @var{doc-string} @var{regexp} @var{from-fn} @var{to-fn} @var{modify} @var{mode-fn})
2067 @end example
2069 Here is what the elements in a format definition mean:
2071 @table @var
2072 @item name
2073 The name of this format.
2075 @item doc-string
2076 A documentation string for the format.
2078 @item regexp
2079 A regular expression which is used to recognize files represented in
2080 this format.
2082 @item from-fn
2083 A function to call to decode data in this format (to convert file data into
2084 the usual Emacs data representation).
2086 The @var{from-fn} is called with two args, @var{begin} and @var{end},
2087 which specify the part of the buffer it should convert.  It should convert
2088 the text by editing it in place.  Since this can change the length of the
2089 text, @var{from-fn} should return the modified end position.
2091 One responsibility of @var{from-fn} is to make sure that the beginning
2092 of the file no longer matches @var{regexp}.  Otherwise it is likely to
2093 get called again.
2095 @item to-fn
2096 A function to call to encode data in this format (to convert
2097 the usual Emacs data representation into this format).
2099 The @var{to-fn} is called with two args, @var{begin} and @var{end},
2100 which specify the part of the buffer it should convert.  There are
2101 two ways it can do the conversion:
2103 @itemize @bullet
2104 @item
2105 By editing the buffer in place.  In this case, @var{to-fn} should
2106 return the end-position of the range of text, as modified.
2108 @item
2109 By returning a list of annotations.  This is a list of elements of the
2110 form @code{(@var{position} . @var{string})}, where @var{position} is an
2111 integer specifying the relative position in the text to be written, and
2112 @var{string} is the annotation to add there.  The list must be sorted in
2113 order of position when @var{to-fn} returns it.
2115 When @code{write-region} actually writes the text from the buffer to the
2116 file, it intermixes the specified annotations at the corresponding
2117 positions.  All this takes place without modifying the buffer.
2118 @end itemize
2120 @item modify
2121 A flag, @code{t} if the encoding function modifies the buffer, and
2122 @code{nil} if it works by returning a list of annotations.
2124 @item mode
2125 A mode function to call after visiting a file converted from this
2126 format.
2127 @end table
2129 The function @code{insert-file-contents} automatically recognizes file
2130 formats when it reads the specified file.  It checks the text of the
2131 beginning of the file against the regular expressions of the format
2132 definitions, and if it finds a match, it calls the decoding function for
2133 that format.  Then it checks all the known formats over again.
2134 It keeps checking them until none of them is applicable.
2136 Visiting a file, with @code{find-file-noselect} or the commands that use
2137 it, performs conversion likewise (because it calls
2138 @code{insert-file-contents}); it also calls the mode function for each
2139 format that it decodes.  It stores a list of the format names in the
2140 buffer-local variable @code{buffer-file-format}.
2142 @defvar buffer-file-format
2143 This variable states the format of the visited file.  More precisely,
2144 this is a list of the file format names that were decoded in the course
2145 of visiting the current buffer's file.  It is always local in all
2146 buffers.
2147 @end defvar
2149 When @code{write-region} writes data into a file, it first calls the
2150 encoding functions for the formats listed in @code{buffer-file-format},
2151 in the order of appearance in the list.
2153 @defun format-write-file file format
2154 This command writes the current buffer contents into the file @var{file}
2155 in format @var{format}, and makes that format the default for future
2156 saves of the buffer.  The argument @var{format} is a list of format
2157 names.
2158 @end defun
2160 @defun format-find-file file format
2161 This command finds the file @var{file}, converting it according to
2162 format @var{format}.  It also makes @var{format} the default if the
2163 buffer is saved later.
2165 The argument @var{format} is a list of format names.  If @var{format} is
2166 @code{nil}, no conversion takes place.  Interactively, typing just
2167 @key{RET} for @var{format} specifies @code{nil}.
2168 @end defun
2170 @defun format-insert-file file format %optional beg end
2171 This command inserts the contents of file @var{file}, converting it
2172 according to format @var{format}.  If @var{beg} and @var{end} are
2173 non-@code{nil}, they specify which part of the file to read, as in
2174 @code{insert-file-contents} (@pxref{Reading from Files}).
2176 The return value is like what @code{insert-file-contents} returns: a
2177 list of the absolute file name and the length of the data inserted
2178 (after conversion).
2180 The argument @var{format} is a list of format names.  If @var{format} is
2181 @code{nil}, no conversion takes place.  Interactively, typing just
2182 @key{RET} for @var{format} specifies @code{nil}.
2183 @end defun
2185 @defvar auto-save-file-format
2186 This variable specifies the format to use for auto-saving.  Its value is
2187 a list of format names, just like the value of
2188 @code{buffer-file-format}; but it is used instead of
2189 @code{buffer-file-format} for writing auto-save files.  This variable
2190 is always local in all buffers.
2191 @end defvar
2193 @node Files and MS-DOS
2194 @section Files and MS-DOS
2195 @cindex MS-DOS file types
2196 @cindex file types on MS-DOS
2197 @cindex text files and binary files
2198 @cindex binary files and text files
2199 @cindex Windows file types
2201   Emacs on MS-DOS and on Windows NT or 95 makes a distinction between
2202 text files and binary files.  This is necessary because ordinary text
2203 files on MS-DOS use a two character sequence between lines:
2204 carriage-return and linefeed (@sc{crlf}).  Emacs expects just a newline
2205 character (a linefeed) between lines.  When Emacs reads or writes a text
2206 file on MS-DOS, it needs to convert the line separators.  This means it
2207 needs to know which files are text files and which are binary.  It makes
2208 this decision when visiting a file, and records the decision in the
2209 variable @code{buffer-file-type} for use when the file is saved.
2211   @xref{MS-DOS Subprocesses}, for a related feature for subprocesses.
2213 @defvar buffer-file-type
2214 This variable, automatically local in each buffer, records the file type
2215 of the buffer's visited file.  The value is @code{nil} for text,
2216 @code{t} for binary.
2217 @end defvar
2219 @defun find-buffer-file-type filename
2220 This function determines whether file @var{filename} is a text file
2221 or a binary file.  It returns @code{nil} for text, @code{t} for binary.
2222 @end defun
2224 @defopt file-name-buffer-file-type-alist
2225 This variable holds an alist for distinguishing text files from binary
2226 files.  Each element has the form (@var{regexp} . @var{type}), where
2227 @var{regexp} is matched against the file name, and @var{type} may be is
2228 @code{nil} for text, @code{t} for binary, or a function to call to
2229 compute which.  If it is a function, then it is called with a single
2230 argument (the file name) and should return @code{t} or @code{nil}.
2231 @end defopt
2233 @defopt default-buffer-file-type
2234 This variable specifies the default file type for files whose names
2235 don't indicate anything in particular.  Its value should be @code{nil}
2236 for text, or @code{t} for binary.
2237 @end defopt
2239 @deffn Command find-file-text filename
2240 Like @code{find-file}, but treat the file as text regardless of its name.
2241 @end deffn
2243 @deffn Command find-file-binary filename
2244 Like @code{find-file}, but treat the file as binary regardless of its
2245 name.
2246 @end deffn