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