user3293056
4
Q:

c check if file was created

int canCreateFile(char* path)
{
	FILE* file = fopen(path, "w");
  	if(file)
    {
  		fclose(file);
      	return 1;
    }
  	return 0;
}
1

New to Communities?

Join the community