Skip to content

Instantly share code, notes, and snippets.

@smamran
Created December 28, 2015 07:49
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 smamran/587290a318dcd193c850 to your computer and use it in GitHub Desktop.
Save smamran/587290a318dcd193c850 to your computer and use it in GitHub Desktop.
GNU C

Check whether a directory exists

#include <sys/stat.h>
struct stat st;
if(stat("/tmp",&st) == 0)
        printf(" /tmp is present\n");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment