view modules/mkancesdirs @ 7312:796e1837ac66

* lib/dirchownmod.c: Don't include fcntl.h; no longer needed. (dirchownmod): New arg FD. All callers changed. Use FD rather than opening the directory ourself, as opening is now the caller's responsibility. * lib/dirchownmod.h: Likewise. * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older hosts that require <sys/types.h> before <sys/stat.h>. Include fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h. (test_dir): Remove. (mkancesdirs): Return length of prefix of FILE that has already been made, or -2 if there is a child doing the work. Redo algorithm so that it is O(N) rather than O(N**2). Optimize away ".", and treat ".." specially since it might stray back into already-created areas. Use a subprocess if necessary. New arg WD; all users changed. MAKE_DIR function should now return 1 if it creates a directory that is not readable. Return -2 if a child process is spun off. * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t. Adjust signature to match code. * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME. (make_dir_parents): Use a subprocess if necessary. New arg WD; all users changed. * lib/savewd.c, lib/savewd.h: New files. * m4/savewd.m4: New file. * modules/mkancesdirs (Depends-on): Add fcntl. * modules/savewd: New file. * MODULES.html.sh (File system functions): Add savewd.
author Paul Eggert <eggert@cs.ucla.edu>
date Sat, 16 Sep 2006 19:58:25 +0000
parents be9e01d008cb
children 92bc7be769fc
line wrap: on
line source

Description:
Ensure the existence of the ancestor directories of a file.

Files:
lib/mkancesdirs.c
lib/mkancesdirs.h
m4/mkancesdirs.m4

Depends-on:
dirname
fcntl
stat-macros

configure.ac:
gl_MKANCESDIRS

Makefile.am:
EXTRA_DIST += mkancesdirs.h

Include:
"mkancesdirs.h"

License:
GPL

Maintainer:
Paul Eggert, Jim Meyering