Skip to content

Instantly share code, notes, and snippets.

@kylelk
Created August 10, 2013 05:22
Show Gist options
  • Save kylelk/6199178 to your computer and use it in GitHub Desktop.
Save kylelk/6199178 to your computer and use it in GitHub Desktop.
make_folder.c
//
// make_folder.c
//
//
// Created by Kyle on 8/9/13.
//
//
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
int main()
{
struct stat st = {0};
if(stat("path", &st) == -1) {
mkdir("path", 0700);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment