blob: 3dfe10522653e868a536e5fc022e0797ba65cbaf [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Based in part on code from sash, Copyright (c) 1999 by David I. Bell
6 * 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
23#include <stdio.h>
24#include <stdlib.h>
25#include <sys/stat.h>
26#include "libbb.h"
27
28/*
29 * Return TRUE if a fileName is a directory.
30 * Nonexistant files return FALSE.
31 */
32int is_directory(const char *fileName, const int followLinks, struct stat *statBuf)
33{
34 int status;
35 int didMalloc = 0;
36
37 if (statBuf == NULL) {
38 statBuf = (struct stat *)xmalloc(sizeof(struct stat));
39 ++didMalloc;
40 }
41
42 if (followLinks == TRUE)
43 status = stat(fileName, statBuf);
44 else
45 status = lstat(fileName, statBuf);
46
47 if (status < 0 || !(S_ISDIR(statBuf->st_mode))) {
48 status = FALSE;
49 }
50 else status = TRUE;
51
52 if (didMalloc) {
53 free(statBuf);
54 statBuf = NULL;
55 }
56 return status;
57}
58
59/* END CODE */
60/*
61Local Variables:
62c-file-style: "linux"
63c-basic-offset: 4
64tab-width: 4
65End:
66*/