how are you? i am trying to add to a path a variable. I created a variable that inside it has the name of the user of windows. So, i want to add that variable to the path.
TCHAR username[UNLEN + 1];
DWORD usernamel_len = UNLEN + 1;
GetUserName((TCHAR*)username, &usernamel_len);
const char* path = "C:\\Users\\" + username +"\\Desktop\\app\\folder";