I need help creating a Folder in AppData.
Lets say I want to create a Folder in %appdata% called "MyFolder", which has the text file test.txt
I tried to use <fstream>
and do this;
ofstream file("%appdata%\MyFolder\test.txt");
but it didn't work..