summaryrefslogtreecommitdiff
path: root/reference/C/EXAMPLES/dir.c
diff options
context:
space:
mode:
Diffstat (limited to 'reference/C/EXAMPLES/dir.c')
-rw-r--r--reference/C/EXAMPLES/dir.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/reference/C/EXAMPLES/dir.c b/reference/C/EXAMPLES/dir.c
new file mode 100644
index 0000000..c4012ed
--- /dev/null
+++ b/reference/C/EXAMPLES/dir.c
@@ -0,0 +1,36 @@
+/************************************************************************
+ *
+ * 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);
+}
+