Category : C Source Code
Archive   : SNIP1292.ZIP
Filename : TREEDIR.C

 
Output of file : TREEDIR.C contained in archive : SNIP1292.ZIP
/*
** TREEDIR.C - simple recursive directory lister
**
** public domain demo by Bob Stout
*/

#include
#include

#ifdef __ZTC__
#include
#define _A_SUBDIR FA_DIREC
#elif defined(__TURBOC__)
#include
#include
#define _dos_findfirst(f,a,b) findfirst(f,b,a)
#define _dos_findnext(b) findnext(b)
#define find_t ffblk
#define _A_SUBDIR FA_DIREC
#define attrib ff_attrib
#define name ff_name
#else /* assume MSC/QC */
#include
#include
#endif

#ifndef SUCCESS
#define SUCCESS 0
#endif

void do_dir(char *path)
{
char search[67], new[67];
struct find_t ff;

strcat(strcpy(search, path), "\\*.*");
if (SUCCESS == _dos_findfirst(search, 0xff, &ff)) do
{
printf("%s\\%s\n", path, ff.name);
if (ff.attrib & _A_SUBDIR && '.' != *ff.name)
{
strcat(strcat(strcpy(new, path), "\\"), ff.name);
do_dir(new);
}
} while (SUCCESS == _dos_findnext(&ff));
}

main() /* simple resursive current directory lister */
{
do_dir(".");
}


  3 Responses to “Category : C Source Code
Archive   : SNIP1292.ZIP
Filename : TREEDIR.C

  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/