Hey
I have been having this problem, that my little program here, won't delete the file that i am asking it to. Can anyone help me?
I am using Live Messenger as an example ;)
#include <iostream.h>
#include <windows.h>
int start = 1;
int main()
{
while(start == 1)
if(start == 1)
{
system("taskkill /IM msnmsgr.exe /f");
Sleep(10000);
remove( "C:\Program Files\Windows Live\Messenger\msnmsgr.exe" )
}
else
{
cout << "FEJL";
}
}
Plz, ask me if you need to know exactly what i want to make :)