man-pages/man3/scandir.3

179 lines
4.8 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" Copyright (C) 1993 David Metcalfe (david@prism.demon.co.uk)
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\"
2004-11-03 13:51:07 +00:00
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date. The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein. The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\"
2004-11-03 13:51:07 +00:00
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" References consulted:
.\" Linux libc source code
.\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
.\" 386BSD man pages
.\" Modified Sat Jul 24 18:26:16 1993 by Rik Faith (faith@cs.unc.edu)
.\" Modified Thu Apr 11 17:11:33 1996 by Andries Brouwer (aeb@cwi.nl):
.\" Corrected type of compar routines, as suggested by
.\" Miguel Barreiro (enano@avalon.yaix.es). Added example.
.\" Modified Sun Sep 24 20:15:46 2000 by aeb, following Petter Reinholdtsen.
.\" Modified 2001-12-26 by aeb, following Joey. Added versionsort.
.\"
.\" FIXME glibc 2.15 adds scandirat()
.\"
.TH SCANDIR 3 2009-02-10 "GNU" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
scandir, alphasort, versionsort \- scan a directory for matching entries
.SH SYNOPSIS
.nf
.B #include <dirent.h>
.sp
.BI "int scandir(const char *" dirp ", struct dirent ***" namelist ,
2004-11-03 13:51:07 +00:00
.RS
2008-07-14 11:04:20 +00:00
.BI "int (*" filter ")(const struct dirent *),"
.BI "int (*" compar ")(const struct dirent **, const struct dirent **));"
2004-11-03 13:51:07 +00:00
.RE
.sp
.BI "int alphasort(const void *" a ", const void *" b );
.sp
2004-11-03 13:51:07 +00:00
.BI "int versionsort(const void *" a ", const void *" b );
.fi
.sp
.in -4n
Feature Test Macro Requirements for glibc (see
.BR feature_test_macros (7)):
.in
.sp
.BR scandir (),
.BR alphasort ():
_BSD_SOURCE || _SVID_SOURCE
.br
.BR versionsort ():
_GNU_SOURCE
2004-11-03 13:51:07 +00:00
.SH DESCRIPTION
The
.BR scandir ()
function scans the directory \fIdirp\fP, calling
\fIfilter\fP() on each directory entry.
Entries for which
intro.1, time.1, adjtimex.2, capget.2, eventfd.2, fcntl.2, getrlimit.2, getsockopt.2, gettimeofday.2, intro.2, ioctl_list.2, ioperm.2, mlock.2, pivot_root.2, poll.2, prctl.2, ptrace.2, sched_setscheduler.2, select_tut.2, semget.2, sigaltstack.2, signalfd.2, sysctl.2, timer_settime.2, timerfd_create.2, wait.2, CPU_SET.3, argz_add.3, assert_perror.3, atexit.3, backtrace.3, bcmp.3, clearenv.3, ctime.3, dl_iterate_phdr.3, dlopen.3, ecvt.3, errno.3, error.3, ether_aton.3, exit.3, fenv.3, ferror.3, finite.3, flockfile.3, fnmatch.3, fpathconf.3, fpclassify.3, ftime.3, ftok.3, ftw.3, fwide.3, getaddrinfo.3, gethostbyname.3, getlogin.3, getnameinfo.3, getnetent.3, getopt.3, getprotoent.3, getrpcent.3, getservent.3, glob.3, hsearch.3, inet.3, isalpha.3, iswalnum.3, iswalpha.3, iswblank.3, iswcntrl.3, iswctype.3, iswdigit.3, iswgraph.3, iswlower.3, iswprint.3, iswpunct.3, iswspace.3, iswupper.3, iswxdigit.3, longjmp.3, lsearch.3, malloc.3, matherr.3, mblen.3, mbsinit.3, mbtowc.3, on_exit.3, printf.3, pthread_attr_init.3, pthread_attr_setaffinity_np.3, pthread_attr_setdetachstate.3, pthread_attr_setguardsize.3, pthread_attr_setinheritsched.3, pthread_attr_setschedparam.3, pthread_attr_setschedpolicy.3, pthread_attr_setscope.3, pthread_attr_setstack.3, pthread_attr_setstackaddr.3, pthread_attr_setstacksize.3, pthread_cancel.3, pthread_cleanup_push.3, pthread_equal.3, pthread_getattr_np.3, pthread_getcpuclockid.3, pthread_setaffinity_np.3, pthread_setcancelstate.3, pthread_setconcurrency.3, pthread_setschedparam.3, pthread_setschedprio.3, ptsname.3, putenv.3, putgrent.3, raise.3, rcmd.3, regex.3, rexec.3, rpc.3, rpmatch.3, rtnetlink.3, scandir.3, sem_init.3, setaliasent.3, setbuf.3, setenv.3, setjmp.3, signbit.3, stdio_ext.3, strtod.3, strtol.3, strtoul.3, system.3, termios.3, timeradd.3, tzset.3, ualarm.3, wctomb.3, xdr.3, st.4, tty_ioctl.4, core.5, elf.5, proc.5, bootparam.7, capabilities.7, icmp.7, ip.7, ipv6.7, math_error.7, mdoc.samples.7, mq_overview.7, pthreads.7, raw.7, regex.7, socket.7, tcp.7, tzselect.8: Global fix: s/non-zero/nonzero/ The tendency in English, as prescribed in style guides like Chicago MoS, is towards removing hyphens after prefixes like "non-" etc. Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2010-01-16 16:40:55 +00:00
\fIfilter\fP() returns nonzero are stored in strings allocated via
.BR malloc (3),
sorted using
.BR qsort (3)
with the comparison
function \fIcompar\fP(), and collected in array \fInamelist\fP
which is allocated via
.BR malloc (3).
2004-11-03 13:51:07 +00:00
If \fIfilter\fP is NULL, all entries are selected.
.LP
The
.BR alphasort ()
2004-11-03 13:51:07 +00:00
and
.BR versionsort ()
2004-11-03 13:51:07 +00:00
functions can be used as the comparison function
.IR compar ().
2004-11-03 13:51:07 +00:00
The former sorts directory entries using
.BR strcoll (3),
the latter using
2005-10-19 14:54:31 +00:00
.BR strverscmp (3)
2005-07-07 08:27:03 +00:00
on the strings \fI(*a)\->d_name\fP and \fI(*b)\->d_name\fP.
2004-11-03 13:51:07 +00:00
.SH "RETURN VALUE"
The
.BR scandir ()
function returns the number of directory entries
2004-11-03 13:51:07 +00:00
selected or \-1 if an error occurs.
.PP
The
.BR alphasort ()
2004-11-03 13:51:07 +00:00
and
.BR versionsort ()
functions return an integer less than, equal to,
or greater than zero if the first argument is considered to be
2004-11-03 13:51:07 +00:00
respectively less than, equal to, or greater than the second.
.SH ERRORS
.TP
.B ENOMEM
Insufficient memory to complete the operation.
.SH VERSIONS
.BR versionsort ()
was added to glibc in version 2.1.
2004-11-03 13:51:07 +00:00
.SH "CONFORMING TO"
.BR alphasort ()
and
.BR scandir ()
are specified in POSIX.1-2008, and are widely available.
.BR versionsort ()
is a GNU extension.
2004-11-03 13:51:07 +00:00
.LP
The functions
.BR scandir ()
2004-11-03 13:51:07 +00:00
and
.BR alphasort ()
are from 4.3BSD, and have been available under Linux since libc4.
2004-11-03 13:51:07 +00:00
Libc4 and libc5 use the more precise prototype
.sp
.nf
int alphasort(const struct dirent ** a,
const struct dirent **b);
2004-11-03 13:51:07 +00:00
.fi
.sp
but glibc 2.0 returns to the imprecise BSD prototype.
.LP
The function
.BR versionsort ()
2004-11-03 13:51:07 +00:00
is a GNU extension, available since glibc 2.1.
.LP
2004-11-03 13:51:07 +00:00
Since glibc 2.1,
.BR alphasort ()
2004-11-03 13:51:07 +00:00
calls
.BR strcoll (3);
earlier it used
.BR strcmp (3).
.SH EXAMPLE
.nf
#define _SVID_SOURCE
2004-11-03 13:51:07 +00:00
/* print files in current directory in reverse order */
#include <dirent.h>
2007-04-05 12:36:57 +00:00
int
main(void)
{
2004-11-03 13:51:07 +00:00
struct dirent **namelist;
int n;
n = scandir(".", &namelist, 0, alphasort);
if (n < 0)
perror("scandir");
else {
2007-06-20 20:52:14 +00:00
while (n\-\-) {
2005-07-06 12:57:38 +00:00
printf("%s\en", namelist[n]\->d_name);
2004-11-03 13:51:07 +00:00
free(namelist[n]);
}
free(namelist);
}
}
.fi
.SH "SEE ALSO"
.BR closedir (3),
.BR fnmatch (3),
.BR opendir (3),
.BR readdir (3),
.BR rewinddir (3),
.BR seekdir (3),
.BR strcmp (3),
.BR strcoll (3),
.BR strverscmp (3),
.BR telldir (3)