_NAME_ createDirectory _PROTOTYPE_ int createDirectory(char *path); _SHORT-DESCRIPTION_ Create a new directory _DESCRIPTION_ createDirectory is used primarily by the put data routines to create new locations for archiving the data. If createDirectory fails to create the directory, the program will exit.1 _SHORT-CODE-SAMPLE_ char directoryPath[] = "/home/idunn1/rgr/dataStorage"; createDirectory(directoryPath); _INPUT_ * A pointer to the directory's path string. _OUTPUT_ * 1 if successful. * Program exits if unsuccessful.