blob: 7f8f7e4152cc5eb525b57029a08ecd6afb42fe4a [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Based in part on code from sash, Copyright (c) 1999 by David I. Bell
Eric Andersenbdfd0d72001-10-24 05:00:29 +00006 * Permission has been granted to redistribute this code under the GPL.
Eric Andersenaad1a882001-03-16 22:47:14 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Eric Andersenaad1a882001-03-16 22:47:14 +000021 */
22
Eric Andersenaad1a882001-03-16 22:47:14 +000023#include <sys/stat.h>
24#include "libbb.h"
25
26/*
27 * Return TRUE if a fileName is a directory.
Eric Andersenaff114c2004-04-14 17:51:38 +000028 * Nonexistent files return FALSE.
Eric Andersenaad1a882001-03-16 22:47:14 +000029 */
30int is_directory(const char *fileName, const int followLinks, struct stat *statBuf)
31{
32 int status;
Glenn L McGrath393183d2003-05-26 14:07:50 +000033 struct stat astatBuf;
Eric Andersenaad1a882001-03-16 22:47:14 +000034
35 if (statBuf == NULL) {
Glenn L McGrath393183d2003-05-26 14:07:50 +000036 /* set from auto stack buffer */
37 statBuf = &astatBuf;
Eric Andersenaad1a882001-03-16 22:47:14 +000038 }
39
Matt Kraai1f0c4362001-12-20 23:13:26 +000040 if (followLinks)
Eric Andersenaad1a882001-03-16 22:47:14 +000041 status = stat(fileName, statBuf);
42 else
43 status = lstat(fileName, statBuf);
44
45 if (status < 0 || !(S_ISDIR(statBuf->st_mode))) {
46 status = FALSE;
47 }
48 else status = TRUE;
49
Eric Andersenaad1a882001-03-16 22:47:14 +000050 return status;
51}
52
53/* END CODE */
54/*
55Local Variables:
56c-file-style: "linux"
57c-basic-offset: 4
58tab-width: 4
59End:
60*/