Q:

C program to check a specified file exists or not using the stat() function

0

C program to check a specified file exists or not using the stat() function

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Given a file path, we have to check whether a specified file exist or not using the stat() function.

Program:

The source code to check a specified file exists or not using the stat() function is given below. The given program is compiled and executed using GCC compile on UBUNTU 18.04 OS successfully.

// C program to check a specified file exist or not 
// using stat() function

#include <stdio.h>
#include <sys/stat.h>

int main(void)
{
	struct stat buff;
    	int isFileExist = 0;
    
    	isFileExist = stat("includehelp.txt",&buff);
    
    	if(isFileExist == 0)
	{
		printf("file exists.\n");
		return 1;
    	}
	
	printf("file does not exists.\n");
    
    	return 0;
}

Output:

file exists.

Explanation:

Here, we checked file "includehelp.txt" exists in the current directory or not using the stat() function. Then printed the appropriate message on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

File Handling Examples Programs in C language

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C program to check a specified file exists or not ... >>
<< C program to check a specified file exists or not...