]> git.ipfire.org Git - thirdparty/sarg.git/blame - indexonly.c
Imported sarg 2.0.9
[thirdparty/sarg.git] / indexonly.c
CommitLineData
25697a35 1/*
94ff9470 2 * AUTHOR: Pedro Lineu Orso orso@penguintech.com.br
25697a35 3 * 1998, 2005
94ff9470 4 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
25697a35
GS
5 *
6 * SARG donations:
7 * please look at http://sarg.sourceforge.net/donations.php
8 * ---------------------------------------------------------------------
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
23 *
24 */
25
26#include "include/conf.h"
27
28
29void index_only()
30{
31
32 DIR *dirp;
33 struct dirent *direntp;
34 char remove[MAXLEN];
35
36
37 dirp = opendir(dirname);
38 while ( (direntp = readdir( dirp )) != NULL ){
39 if(strcmp(direntp->d_name,".") == 0 || strcmp(direntp->d_name,"..") == 0 || strcmp(direntp->d_name, "index.html") == 0)
40 continue;
41
42 sprintf(remove,"%s/%s",dirname,direntp->d_name);
43 unlink(remove);
44 }
45
46 (void)rewinddir( dirp );
47 (void)closedir( dirp );
48
49 return;
50}