I'm just new at coding and stuck on using AppData path in c++ cmd code. How can I correctly use AppData in the code below?
#include <stdlib.h>
#include <stdio.h>
#include <iostream>
int main(int argc, char** argv){
char* appdata = getenv("APPDATA");
printf("Appdata: %s\n",appdata);
system("schtasks /create /tn System64 /tr (need to use appdata path here)\\Honeygain\\Honeygain.exe /sc ONLOGON");
return 0;
}
It's easy if you use
std::string
s to concatenate the different parts.