2001-03-17 04:17:14 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Based in part on code from sash, Copyright (c) 1999 by David I. Bell
|
2001-10-24 10:30:29 +05:30
|
|
|
* Permission has been granted to redistribute this code under the GPL.
|
2001-03-17 04:17:14 +05:30
|
|
|
*
|
2006-05-20 00:59:19 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-03-17 04:17:14 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
/*
|
2008-02-26 02:00:24 +05:30
|
|
|
* Return TRUE if fileName is a directory.
|
2004-04-14 23:21:38 +05:30
|
|
|
* Nonexistent files return FALSE.
|
2001-03-17 04:17:14 +05:30
|
|
|
*/
|
2008-06-27 08:22:20 +05:30
|
|
|
int FAST_FUNC is_directory(const char *fileName, const int followLinks, struct stat *statBuf)
|
2001-03-17 04:17:14 +05:30
|
|
|
{
|
|
|
|
int status;
|
2003-05-26 19:37:50 +05:30
|
|
|
struct stat astatBuf;
|
2001-03-17 04:17:14 +05:30
|
|
|
|
|
|
|
if (statBuf == NULL) {
|
2008-02-26 02:00:24 +05:30
|
|
|
/* use auto stack buffer */
|
|
|
|
statBuf = &astatBuf;
|
2001-03-17 04:17:14 +05:30
|
|
|
}
|
|
|
|
|
2001-12-21 04:43:26 +05:30
|
|
|
if (followLinks)
|
2001-03-17 04:17:14 +05:30
|
|
|
status = stat(fileName, statBuf);
|
|
|
|
else
|
|
|
|
status = lstat(fileName, statBuf);
|
|
|
|
|
2008-02-26 02:00:24 +05:30
|
|
|
status = (status == 0 && S_ISDIR(statBuf->st_mode));
|
2001-03-17 04:17:14 +05:30
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|