1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-26 02:30:35 +02:00
Files
coreutils/lib/rmdir.c
T

78 lines
1.8 KiB
C
Raw Normal View History

1996-11-04 17:56:16 +00:00
/* BSD compatible remove directory function for System V
2003-09-10 09:04:49 +00:00
2004-06-19 12:25:31 +00:00
Copyright (C) 1988, 1990, 1999, 2003, 2004 Free Software Foundation, Inc.
1994-10-02 05:35:52 +00:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
1996-07-15 03:36:16 +00:00
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
1994-10-02 05:35:52 +00:00
1996-11-04 17:56:16 +00:00
#if HAVE_CONFIG_H
# include <config.h>
1994-10-02 05:35:52 +00:00
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
2004-06-19 12:25:31 +00:00
#include "stat-macros.h"
1994-10-02 05:35:52 +00:00
/* rmdir adapted from GNU tar. */
/* Remove directory DPATH.
Return 0 if successful, -1 if not. */
int
2003-09-10 09:04:49 +00:00
rmdir (char const *dpath)
1994-10-02 05:35:52 +00:00
{
pid_t cpid;
int status;
1994-10-02 05:35:52 +00:00
struct stat statbuf;
1995-05-13 13:20:19 +00:00
if (stat (dpath, &statbuf) != 0)
1994-10-02 05:35:52 +00:00
return -1; /* errno already set */
if (!S_ISDIR (statbuf.st_mode))
{
errno = ENOTDIR;
return -1;
}
cpid = fork ();
switch (cpid)
{
case -1: /* cannot fork */
return -1; /* errno already set */
case 0: /* child process */
execl ("/bin/rmdir", "rmdir", dpath, (char *) 0);
_exit (1);
default: /* parent process */
/* Wait for kid to finish. */
while (wait (&status) != cpid)
/* Do nothing. */ ;
if (status)
1994-10-02 05:35:52 +00:00
{
/* /bin/rmdir failed. */
errno = EIO;
return -1;
}
return 0;
}
}