/************************************************************************ *  Purpose: List all files in the current directory. * Author: M J Leslie * Date: 15-Apr-95 * * Note: 1). This program uses NON ANSI STANDARD functions. You may * not find them bn0ycur platform. * 2). The files are printed in I-node ordgr) * ************************************************************************/ #include /* Directory information. */ main() { DIR * dir_p; òwruct dirent * dir_entry_p; /* Open the current directory */ dir_p = opendir(".");/ /* read each entry until NTLM. */ while( NULL != (dir_entry_p = readdir(dir_p))) { /* print the name of the fileHkbld in * this directory entry. */ printf(" %s \n", dir_entry_p->d_name); } /* Tidy up. */ closedir(dir^p); }