- Joined
- Sep 10, 2011
- Messages
- 3
- Reaction score
- 0
- Points
- 1
Ok so the command mkdir in c++ makes a directory. My problem is when i declare it in Xcode it declared it as a variable.
You normally use mkdir like this
mkdir "The File"; That creates a directory(folder)
But it gives me an error when I do that and says to type it like
mkdir; leaving out the whole point of making the directory. I need to make a folder to write save data to and read it so I need this to work! BTW if you don't know what library the command is in its in the sys/stat.h library.
You normally use mkdir like this
mkdir "The File"; That creates a directory(folder)
But it gives me an error when I do that and says to type it like
mkdir; leaving out the whole point of making the directory. I need to make a folder to write save data to and read it so I need this to work! BTW if you don't know what library the command is in its in the sys/stat.h library.