Language Ccpp Cref Examples Dir.c

/ ************************************************************************
 *
 * 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 on your platform.
 *	 2) The file names are NOT stored in any particular order.
 *
 ************************************************************************/
#include <dirent.h>			/* Directory information.	*/
main()
{
 DIR *dir_p;
 struct dirent *dir_entry_p;
 
				/* Open the current directory		*/	
 dir_p = opendir(".");
				/* read each entry until NULL.		*/
 while( NULL != (dir_entry_p = readdir(dir_p)))
 {
				/* print the name of the file held in 
				 * this directory entry.		*/
 printf(" %s \n", dir_entry_p->d_name);
 }
				/* Tidy up.				*/
 closedir(dir_p);
}

file: /Techref/language/ccpp/cref/EXAMPLES/dir.c, 0KB, , updated: 1998年1月13日 13:47, local time: 2025年9月9日 10:21,
40.74.122.252:LOG IN

©2025 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://techref.massmind.org/techref/language/ccpp/cref/EXAMPLES/dir.c"> language ccpp cref EXAMPLES dir</A>

Did you find what you needed?

Welcome to massmind.org!

Welcome to techref.massmind.org!

.

AltStyle によって変換されたページ (->オリジナル) /