Sep 19, 2016 at 4:03pm
So i've this part of code:
1 2 3
|
ofstream file;
file.open("C:\\Users\\Mario\\AppData\\Roaming\\DoDLog.log", ios::out | ios::app);
|
obviously this will work only on my computer where my windows partition is C:\ and my username is Mario.
If i try
1 2 3
|
ofstream file;
file.open("%appdata%\\DoDLog.log", ios::out | ios::app);
|
this doesn't work!
So how i can get the appdata path and put it into first parameter?
i've tryed this
1 2 3 4 5 6
|
char* Path;
Path = getenv ("appdata");
ofstream file;
file.open(Path + "DoDLog.log", ios::out | ios::app);
|
but this doesn't work for some variables conversion issue
How can i solve this?
Last edited on Sep 19, 2016 at 4:05pm