Check If File Exist C

[Solved] Check If File Exist C | 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

Answers related to check if file exist c

Code Explorer Popular Question For C