158f0484fSRodney W. Grimes.\" Copyright (c) 1983, 1991, 1993 258f0484fSRodney W. Grimes.\" The Regents of the University of California. All rights reserved. 358f0484fSRodney W. Grimes.\" 458f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without 558f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions 658f0484fSRodney W. Grimes.\" are met: 758f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright 858f0484fSRodney W. Grimes.\" notice, this list of conditions and the following disclaimer. 958f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright 1058f0484fSRodney W. Grimes.\" notice, this list of conditions and the following disclaimer in the 1158f0484fSRodney W. Grimes.\" documentation and/or other materials provided with the distribution. 12fbbd9655SWarner Losh.\" 3. Neither the name of the University nor the names of its contributors 1358f0484fSRodney W. Grimes.\" may be used to endorse or promote products derived from this software 1458f0484fSRodney W. Grimes.\" without specific prior written permission. 1558f0484fSRodney W. Grimes.\" 1658f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 1758f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1858f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 1958f0484fSRodney W. Grimes.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 2058f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2158f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2258f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2358f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2458f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2558f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2658f0484fSRodney W. Grimes.\" SUCH DAMAGE. 2758f0484fSRodney W. Grimes.\" 2809ec5e67SMina Galić.Dd August 31, 2023 2958f0484fSRodney W. Grimes.Dt SCANDIR 3 30a307d598SRuslan Ermilov.Os 3158f0484fSRodney W. Grimes.Sh NAME 3258f0484fSRodney W. Grimes.Nm scandir , 33a294e679SKonstantin Belousov.Nm scandirat , 34ea448a0aSKonstantin Belousov.Nm scandir_b , 3505c9a015SAymeric Wibo.Nm alphasort , 3605c9a015SAymeric Wibo.Nm versionsort 3758f0484fSRodney W. Grimes.Nd scan a directory 3825bb73e0SAlexey Zelkin.Sh LIBRARY 3925bb73e0SAlexey Zelkin.Lb libc 4058f0484fSRodney W. Grimes.Sh SYNOPSIS 4132eef9aeSRuslan Ermilov.In dirent.h 4258f0484fSRodney W. Grimes.Ft int 43aa5e19a9SKonstantin Belousov.Fo scandir 44aa5e19a9SKonstantin Belousov.Fa "const char *dirname" 45aa5e19a9SKonstantin Belousov.Fa "struct dirent ***namelist" 46aa5e19a9SKonstantin Belousov.Fa "int \*(lp*select\*(rp\*(lpconst struct dirent *\*(rp" 47aa5e19a9SKonstantin Belousov.Fa "int \*(lp*compar\*(rp\*(lpconst struct dirent **, const struct dirent **\*(rp" 48aa5e19a9SKonstantin Belousov.Fc 49*b7000cadSTrond Endrestøl.Ft int 50a294e679SKonstantin Belousov.Fo scandirat 51*b7000cadSTrond Endrestøl.Fa "int dirfd" 52a294e679SKonstantin Belousov.Fa "const char *dirname" 53a294e679SKonstantin Belousov.Fa "struct dirent ***namelist" 54a294e679SKonstantin Belousov.Fa "int \*(lp*select\*(rp\*(lpconst struct dirent *\*(rp" 55a294e679SKonstantin Belousov.Fa "int \*(lp*compar\*(rp\*(lpconst struct dirent **, const struct dirent **\*(rp" 56a294e679SKonstantin Belousov.Fc 5758f0484fSRodney W. Grimes.Ft int 58aa5e19a9SKonstantin Belousov.Fo scandir_b 59aa5e19a9SKonstantin Belousov.Fa "const char *dirname" 60aa5e19a9SKonstantin Belousov.Fa "struct dirent ***namelist" 61*b7000cadSTrond Endrestøl.Fa "int \*(lp^select\*(rp\*(lpconst struct dirent *\*(rp" 62aa5e19a9SKonstantin Belousov.Fa "int \*(lp^compar\*(rp\*(lpconst struct dirent **, const struct dirent **\*(rp" 63aa5e19a9SKonstantin Belousov.Fc 6446cdc140SDavid Chisnall.Ft int 654176dd52SKonstantin Belousov.Fn alphasort "const struct dirent **d1" "const struct dirent **d2" 6605c9a015SAymeric Wibo.Ft int 6705c9a015SAymeric Wibo.Fn versionsort "const struct dirent **d1" "const struct dirent **d2" 6858f0484fSRodney W. Grimes.Sh DESCRIPTION 6958f0484fSRodney W. GrimesThe 7058f0484fSRodney W. Grimes.Fn scandir 7158f0484fSRodney W. Grimesfunction 7258f0484fSRodney W. Grimesreads the directory 7358f0484fSRodney W. Grimes.Fa dirname 7458f0484fSRodney W. Grimesand builds an array of pointers to directory 7558f0484fSRodney W. Grimesentries using 7658f0484fSRodney W. Grimes.Xr malloc 3 . 7758f0484fSRodney W. GrimesIt returns the number of entries in the array. 7858f0484fSRodney W. GrimesA pointer to the array of directory entries is stored in the location 7958f0484fSRodney W. Grimesreferenced by 8058f0484fSRodney W. Grimes.Fa namelist . 8158f0484fSRodney W. Grimes.Pp 8258f0484fSRodney W. GrimesThe 8358f0484fSRodney W. Grimes.Fa select 842efeeba5SRuslan Ermilovargument is a pointer to a user supplied subroutine which is called by 8558f0484fSRodney W. Grimes.Fn scandir 8658f0484fSRodney W. Grimesto select which entries are to be included in the array. 8758f0484fSRodney W. GrimesThe select routine is passed a 8858f0484fSRodney W. Grimespointer to a directory entry and should return a non-zero 8958f0484fSRodney W. Grimesvalue if the directory entry is to be included in the array. 9058f0484fSRodney W. GrimesIf 9158f0484fSRodney W. Grimes.Fa select 9258f0484fSRodney W. Grimesis null, then all the directory entries will be included. 9358f0484fSRodney W. Grimes.Pp 9458f0484fSRodney W. GrimesThe 9558f0484fSRodney W. Grimes.Fa compar 962efeeba5SRuslan Ermilovargument is a pointer to a user supplied subroutine which is passed to 9758f0484fSRodney W. Grimes.Xr qsort 3 9858f0484fSRodney W. Grimesto sort the completed array. 9958f0484fSRodney W. GrimesIf this pointer is null, the array is not sorted. 10058f0484fSRodney W. Grimes.Pp 10158f0484fSRodney W. GrimesThe 10258f0484fSRodney W. Grimes.Fn alphasort 10358f0484fSRodney W. Grimesfunction 10458f0484fSRodney W. Grimesis a routine which can be used for the 10558f0484fSRodney W. Grimes.Fa compar 106e5732e18SAndrey A. Chernovargument to sort the array alphabetically using 107e5732e18SAndrey A. Chernov.Xr strcoll 3 . 10858f0484fSRodney W. Grimes.Pp 10905c9a015SAymeric WiboThe 11005c9a015SAymeric Wibo.Fn versionsort 11105c9a015SAymeric Wibofunction is a routine which can be used for the 11205c9a015SAymeric Wibo.Fa compar 11305c9a015SAymeric Wiboargument to sort the array naturally using 11405c9a015SAymeric Wibo.Xr strverscmp 3 . 11505c9a015SAymeric Wibo.Pp 11658f0484fSRodney W. GrimesThe memory allocated for the array can be deallocated with 11758f0484fSRodney W. Grimes.Xr free 3 , 11858f0484fSRodney W. Grimesby freeing each pointer in the array and then the array itself. 11946cdc140SDavid Chisnall.Pp 12046cdc140SDavid ChisnallThe 121a294e679SKonstantin Belousov.Fn scandirat 122a294e679SKonstantin Belousovfunction is similar to 123a294e679SKonstantin Belousov.Fn scandir , 124a294e679SKonstantin Belousovbut takes an additional 125a294e679SKonstantin Belousov.Fa dirfd 126a294e679SKonstantin Belousovargument. 127a294e679SKonstantin BelousovIf the supplied 128a294e679SKonstantin Belousov.Fa dirname 129a294e679SKonstantin Belousovis absolute, the function's behavior is identical to that of 130a294e679SKonstantin Belousov.Fn scandir , 131a294e679SKonstantin Belousovthe 132a294e679SKonstantin Belousov.Fa dirfd 133a294e679SKonstantin Belousovargument is unused. 134a294e679SKonstantin BelousovIf 135a294e679SKonstantin Belousov.Fa dirname 136a294e679SKonstantin Belousovis relative, 137a294e679SKonstantin Belousov.Fa dirfd 138a294e679SKonstantin Belousovmust be a valid file descriptor referencing a directory, in 139a294e679SKonstantin Belousovwhich case the 140a294e679SKonstantin Belousov.Fa dirname 141a294e679SKonstantin Belousovlookup is performed relative to the directory referenced by 142a294e679SKonstantin Belousov.Fa dirfd . 143a294e679SKonstantin BelousovIf 144a294e679SKonstantin Belousov.Fa dirfd 145a294e679SKonstantin Belousovhas the special value 146a294e679SKonstantin Belousov.Va AT_FDCWD , 147a294e679SKonstantin Belousovthen the current process directory is used as the base for 148a294e679SKonstantin Belousovrelative lookups. 149a294e679SKonstantin BelousovSee 150a294e679SKonstantin Belousov.Xr openat 2 151a294e679SKonstantin Belousovfor additional details. 152a294e679SKonstantin Belousov.Pp 153a294e679SKonstantin BelousovThe 15446cdc140SDavid Chisnall.Fn scandir_b 15546cdc140SDavid Chisnallfunction behaves in the same way as 15646cdc140SDavid Chisnall.Fn scandir , 15746cdc140SDavid Chisnallbut takes blocks as arguments instead of function pointers and calls 15846cdc140SDavid Chisnall.Fn qsort_b 15946cdc140SDavid Chisnallrather than 16046cdc140SDavid Chisnall.Fn qsort . 16158f0484fSRodney W. Grimes.Sh DIAGNOSTICS 16258f0484fSRodney W. GrimesReturns \-1 if the directory cannot be opened for reading or if 16358f0484fSRodney W. Grimes.Xr malloc 3 16458f0484fSRodney W. Grimescannot allocate enough memory to hold all the data structures. 16558f0484fSRodney W. Grimes.Sh SEE ALSO 166a294e679SKonstantin Belousov.Xr openat 2 , 16758f0484fSRodney W. Grimes.Xr directory 3 , 16858f0484fSRodney W. Grimes.Xr malloc 3 , 16958f0484fSRodney W. Grimes.Xr qsort 3 , 1700aee91e1SChristian Brueffer.Xr strcoll 3 , 17105c9a015SAymeric Wibo.Xr strverscmp 3 , 1720aee91e1SChristian Brueffer.Xr dir 5 17305c9a015SAymeric Wibo.Sh STANDARDS 17405c9a015SAymeric WiboThe 17505c9a015SAymeric Wibo.Fn versionsort 17605c9a015SAymeric Wibofunction is a GNU extension and conforms to no standard. 17758f0484fSRodney W. Grimes.Sh HISTORY 17858f0484fSRodney W. GrimesThe 17958f0484fSRodney W. Grimes.Fn scandir 18058f0484fSRodney W. Grimesand 18158f0484fSRodney W. Grimes.Fn alphasort 18258f0484fSRodney W. Grimesfunctions appeared in 18358f0484fSRodney W. Grimes.Bx 4.2 . 184a294e679SKonstantin BelousovThe 185a294e679SKonstantin Belousov.Fn scandirat 18605c9a015SAymeric Wiboand 187*b7000cadSTrond Endrestøl.Fn versionsort 18805c9a015SAymeric Wibofunctions were added in 18909ec5e67SMina Galić.Fx 13.2 . 190