Category : Files from Magazines
Archive   : CUJ9202.ZIP
Filename : 1002097B

 
Output of file : 1002097B contained in archive : CUJ9202.ZIP


/* RECUR is a recursive descent subroutine to search
directories and subs with wildcard and path
capabilities -> then pass the path name
to a user supplied function called "subfunc".
2 switches are presently supported: totals
and subs for subdirectories.
*/

#include
#include
#include
#include
#include

#define MAX_SUB 128

extern void subfunc(char *path);

int recurs(char *path, int subs, int totals)
{
struct find_t *fib;
char *drive, *dir, *fname, *ext;
char *tmppath, *tmpdir;
char (*subfifoptr)[_MAX_FNAME];
char *subfifo;
int total = 0;
/* malloc so we don't blow up the stack */
fib = malloc(sizeof(struct find_t));
drive = malloc(_MAX_DRIVE);
dir = malloc(_MAX_DIR);
fname = malloc(_MAX_FNAME);
ext = malloc(_MAX_EXT);
tmpdir = malloc(_MAX_DIR);
tmppath = malloc(_MAX_PATH);

if (subs)
{
/* if subs switch - do subdirectories first, RECURSIVELY */
subfifo = *subfifoptr =
(char *)malloc(_MAX_FNAME * MAX_SUB);
_splitpath(path, drive, dir, fname, ext);
_makepath(tmppath, drive, dir, "*", "*");
if (!_dos_findfirst(tmppath, _A_SUBDIR, fib))
do
{
if (fib->name[0] != '.' && fib->attrib &
_A_SUBDIR)
strcpy(*subfifoptr++, fib->name);
} while (!_dos_findnext(fib) && *subfifoptr <
&subfifo[(_MAX_FNAME - 1) * MAX_SUB]);
**subfifoptr = NULL; /* terminate fifo */
*subfifoptr = subfifo; /* reset fifo pointer */
while(**subfifoptr) /* while not at the end */
{
strcpy(tmpdir, dir);
_makepath(tmppath, drive,
strcat(tmpdir, *subfifoptr++), fname, ext);
total += recurs(tmppath, subs, totals);
}
free(subfifo);
}

if (!_dos_findfirst(path, _A_NORMAL, fib))
do
{
_splitpath(path, drive, dir, fname, ext);
strcpy(tmppath, drive);
strcat(tmppath, dir);
subfunc(strcat(tmppath, fib->name));
total++;
} while (!_dos_findnext(fib));
if (totals)
printf("\ntotal = %d\t%s files\n", total, path);

free(fib), free(drive), free(dir), free(fname);
free(ext), free(tmpdir), free(tmppath);
return total;
}


  3 Responses to “Category : Files from Magazines
Archive   : CUJ9202.ZIP
Filename : 1002097B

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/