C Check If File Exists

[Solved] C Check If File Exists | C - Code Explorer | yomemimo.com
Question : c check if file exists

Answered by : christian-lehnert

if( access( fname, F_OK ) == 0 ) { // file exists
} else { // file doesn't exist
}

Source : https://stackoverflow.com/questions/230062/whats-the-best-way-to-check-if-a-file-exists-in-c | Last Update : Wed, 13 Jan 21

Question : c check if file was created

Answered by : wild-wildebeest-u997xgv9xwwc

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

Source : | Last Update : Mon, 06 Jul 20

Answers related to c check if file exists

Code Explorer Popular Question For C