Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Utility routines. |
| 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Based in part on code from sash, Copyright (c) 1999 by David I. Bell |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 6 | * Permission has been granted to redistribute this code under the GPL. |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 7 | * |
| 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 Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 21 | */ |
| 22 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 23 | #include <sys/stat.h> |
| 24 | #include "libbb.h" |
| 25 | |
| 26 | /* |
| 27 | * Return TRUE if a fileName is a directory. |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame^] | 28 | * Nonexistent files return FALSE. |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 29 | */ |
| 30 | int is_directory(const char *fileName, const int followLinks, struct stat *statBuf) |
| 31 | { |
| 32 | int status; |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 33 | struct stat astatBuf; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 34 | |
| 35 | if (statBuf == NULL) { |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 36 | /* set from auto stack buffer */ |
| 37 | statBuf = &astatBuf; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 38 | } |
| 39 | |
Matt Kraai | 1f0c436 | 2001-12-20 23:13:26 +0000 | [diff] [blame] | 40 | if (followLinks) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 41 | 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 Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 50 | return status; |
| 51 | } |
| 52 | |
| 53 | /* END CODE */ |
| 54 | /* |
| 55 | Local Variables: |
| 56 | c-file-style: "linux" |
| 57 | c-basic-offset: 4 |
| 58 | tab-width: 4 |
| 59 | End: |
| 60 | */ |