Skip to content

Instantly share code, notes, and snippets.

@Batou99
Created April 11, 2011 10:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Batou99/913321 to your computer and use it in GitHub Desktop.
Save Batou99/913321 to your computer and use it in GitHub Desktop.
#include "apue.h"
#include <dirent.h>
int
main(int argc, char *argv[])
{
DIR *dp;
struct dirent *dirp;
if (argc != 2)
err_quit("usage: ls directory_name");
if ((dp = opendir(argv[1])) == NULL)
err_sys("can't open %s", argv[1]);
while ((dirp = readdir(dp)) != NULL)
printf("%s\n", dirp->d_name);
closedir(dp);
exit(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment