c Überprüfen Sie, ob die Datei erstellt wurde
int canCreateFile(char* path)
{
FILE* file = fopen(path, "w");
if(file)
{
fclose(file);
return 1;
}
return 0;
}
Wild Wildebeest