I'm trying to open a file, using the ifstream function. I'm using a .jpg image as an example, but it doesn't work, any ideas?
Thank you.
int main(int argc, char *argv[])
{
char file[20];
strcpy(file,"C:\\Fraps\\1.1.jpg");
ifstream outfile;
outfile.open(file);
return 0;
}