Program: example_mkdir.c
CS-161: Software Project
Instructor: Rob Bruce
Spring 2016

This program demonstrates how to create a directory using the mkdir() and file stat() functions in C. The directory will be created if it presently doesn't exist.

The full source code for example_mkdir.c is available at http://www.cs.sjsu.edu/~bruce/programs/spring_2016_cs161/example_mkdir/example_mkdir.c

A makefile to compile example_mkdir.c is available at http://www.cs.sjsu.edu/~bruce/programs/spring_2016_cs161/example_mkdir/Makefile

To compile example_mkdir.c, type make within a shell command prompt in the same directory containining example_mkdir.c and your Makefile.