1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 10:51:48 +02:00
Files
coreutils/lib/isdir.c

44 lines
1.3 KiB
C
Raw Normal View History

1992-10-31 20:42:48 +00:00
/* isdir.c -- determine whether a directory exists
Copyright (C) 1990 Free Software Foundation, Inc.
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. */
1992-10-31 20:42:48 +00:00
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
1992-10-31 20:42:48 +00:00
#include <sys/types.h>
#include <sys/stat.h>
1994-08-27 21:34:13 +00:00
#ifdef STAT_MACROS_BROKEN
#undef S_ISDIR
1994-08-27 21:34:13 +00:00
#endif /* STAT_MACROS_BROKEN. */
1992-10-31 20:42:48 +00:00
#if !defined(S_ISDIR) && defined(S_IFDIR)
#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
1992-10-31 20:42:48 +00:00
#endif
/* If PATH is an existing directory or symbolic link to a directory,
return nonzero, else 0. */
int
isdir (path)
char *path;
{
struct stat stats;
1995-05-13 13:07:54 +00:00
return stat (path, &stats) == 0 && S_ISDIR (stats.st_mode);
1992-10-31 20:42:48 +00:00
}