#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
////////////////////////////////////////
//Author :- p0is0n(Indetectables)
////////////////////////////////////////
int sCopyFile(char* sOriginal,char* sNew) //Funcion
{
if(CopyFile(sOriginal,sNew,FALSE)==TRUE)
{
return 1;
}
else
return 0;
}
int main(int argc, char *argv[])
{
sCopyFile(“File.exe”,”Copy.exe”); //Modo de Uso
getch();
}
