Skip to content

Instantly share code, notes, and snippets.

@jklmnn
Last active December 26, 2019 15:45
Show Gist options
  • Save jklmnn/61a8f887319f98093c136fd8dd656b28 to your computer and use it in GitHub Desktop.
Save jklmnn/61a8f887319f98093c136fd8dd656b28 to your computer and use it in GitHub Desktop.
#include <sys/types.h>
#include <dirent.h>
#include <stdio.h>
void ls(char *path)
{
DIR *dir;
struct dirent *file;
dir = opendir(path);
while((file = readdir(dir)) != NULL)
{
printf(" %s\n", file->d_name);
}
closedir(dir);
}
void ls(char *path);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment