C Programming - File Management in C
C Programming - File Management in C
C Programming - File Management in C
In this tutorial you will learn about C Programming - File management in C, File operation
functions in C, Defining and opening a file, Closing a file, The getw and putw functions, The
fprintf & fscanf functions, Random access to files and fseek function.
C supports a number of functions that have the ability to perform basic file operations, which
include:
1. Naming a file
2. Opening a file
3. Reading from a file
4. Writing data into a file
5. Closing a file
• Real life situations involve large volume of data and in such cases, the console oriented
I/O operations pose two major problems
• It becomes cumbersome and time consuming to handle large volumes of data through
terminals.
• The entire data is lost when either the program is terminated or computer is turned off
therefore it is necessary to have more flexible approach where data can be stored on the
disks and read whenever necessary, without destroying the data. This method employs
the concept of files to store data.
File operation functions in C:
Function Name Operation
FILE *fp;
fp=fopen(“filename”,”mode”);
The first statement declares the variable fp as a pointer to the data type FILE. As stated earlier,
File is a structure that is defined in the I/O Library. The second statement opens the file named
filename and assigns an identifier to the FILE type pointer fp. This pointer, which contains all
the information about the file, is subsequently used as a communication link between the system
and the program.
The second statement also specifies the purpose of opening the file. The mode does this job.
In these statements the p1 and p2 are created and assigned to open the files data and results
respectively the file data is opened for reading and result is opened for writing. In case the results
file already exists, its contents are deleted and the files are opened as a new file. If data file does
not exist error will occur.
Closing a file:
The input output library supports the function to close a file; it is in the following format.
fclose(file_pointer);
A file must be closed as soon as all operations on it have been completed. This would close the
file associated with the file pointer.
Observe the following program.
….
FILE *p1 *p2;
p1=fopen (“Input”,”w”);
p2=fopen (“Output”,”r”);
….
…
fclose(p1);
fclose(p2)
The above program opens two files and closes them after all operations on them are completed,
once a file is closed its file pointer can be reversed on other file.
The getc and putc functions are analogous to getchar and putchar functions and handle one
character at a time. The putc function writes the character contained in character variable c to the
file associated with the pointer fp1. ex putc(c,fp1); similarly getc function is used to read a
character from a file that has been open in read mode. c=getc(fp2).
The program shown below displays use of a file operations. The data enter through the keyboard
and the program writes it. Character by character, to the file input. The end of the data is
indicated by entering an EOF character, which is control-z. the file input is closed at this signal.
putw(integer,fp);
getw(fp);
/*Example program for using getw and putw functions*/
#include< stdio.h >
main()
{
FILE *f1,*f2,*f3;
int number I;
printf(“Contents of the data file\n\n”);
f1=fopen(“DATA”,”W”);
for(I=1;I< 30;I++)
{
scanf(“%d”,&number);
if(number==-1)
break;
putw(number,f1);
}
fclose(f1);
f1=fopen(“DATA”,”r”);
f2=fopen(“ODD”,”w”);
f3=fopen(“EVEN”,”w”);
while((number=getw(f1))!=EOF)/* Read from data file*/
{
if(number%2==0)
putw(number,f3);/*Write to even file*/
else
putw(number,f2);/*write to odd file*/
}
fclose(f1);
fclose(f2);
fclose(f3);
f2=fopen(“ODD”,”r”);
f3=fopen(“EVEN”,”r”);
printf(“\n\nContents of the odd file\n\n”);
while(number=getw(f2))!=EOF)
printf(“%d%d”,number);
printf(“\n\nContents of the even file”);
while(number=getw(f3))!=EOF)
printf(“%d”,number);
fclose(f2);
fclose(f3);
}
Where fp id a file pointer associated with a file that has been opened for writing. The control
string is file output specifications list may include variable, constant and string.
fprintf(f1,%s%d%f”,name,age,7.5);
Here name is an array variable of type char and age is an int variable
The general format of fscanf is
fscanf(fp,”controlstring”,list);
This statement would cause the reading of items in the control string.
Example:
fscanf(f2,”5s%d”,item,&quantity”);
Like scanf, fscanf also returns the number of items that are successfully read.
1 > fseek
fseek function:
The general format of fseek function is a s follows:
This function is used to move the file position to a desired location within the file. Fileptr
is a pointer to the file concerned. Offset is a number or variable of type long, and position in an
integer number. Offset specifies the number of positions (bytes) to be moved from the location
specified bt the position. The position can take the 3 values.
Value Meaning
0 Beginning of the file
1 Current position
2 End of the file.
Related Topics
Virtual Team Management
Risk Management Master Plan
Understanding the Risk Management Process
Risk Management Preparation
How to Create an Effective Risk Management Plan
Top of Form
Bottom of Form
Comments
This topic is helpful but there are some typographical errors (function names, function
prototypes, omitted commas & semicolons) I had observed. These errors might lead to
confusion and misinformation to the reader.
July 12, 2006, 3:51 am
ramakrishh said:
Illustrative examples were used so that it became very easy to understand.Keep on adding new
examples.
December 15, 2006, 3:35 am
who to manage in the size of program if i need to do the size like the size of floppy disc what i
need to do
April 21, 2007, 8:56 am
Lynette said:
This information is helpful, however it did not solve my problem. How do you find the
location of the file that you are trying to open using fptr=fopen(File???, "r")? And, when
trying to open a program in C, is it necessary that the other program be a C file as well? And if
in fact the other program is not in C format, how can you change it to make it readable to C
without changing any of the content?
July 13, 2007, 10:50 am
sajad said:
tyhods said:
If your data is in an excel file, just save the excel file as a tab delimited text file. Then you
should be able to access the data from the file in C.
If you have the data in C, you save your text file as a tab delimited text file. Then you can
open that text file in excel and convert the data to excel format.
November 24, 2007, 2:42 am
L said:
I am programming in c, and the program should ask to enter a word. A file with 10 strings
should be searched to match the word entered. If the word matches the string it should be
printed. What function could I use to match the key word to a string in a file?
December 10, 2007, 3:29 pm
Scooter said:
Can anybody tell me how to count the paragraphs of a file, of which name, is entered by the
user in a command line program using argc, argv etc?
December 13, 2007, 3:32 am
Chirag...... said:
Would you tell me why ftell() returns 0 in a file that is opened in append mode?
April 11, 2008, 12:15 am
The first word in the line is either $GPGGA or $GPRMC. The data is redirected to the file and
gets appended. Based on the requirement, I do need to read the latest line having $GPGGA or
$GPRMC. How can I do it?
July 10, 2008, 11:54 pm
nisha said:
a lot information missing then also it is very good then others till i find topics on file
handling .well done
November 25, 2008, 7:23 am
Sangi1987 said:
Need a C program that would reads the file and builds a linked list. After the list is built,
display it on the monitor
November 27, 2008, 8:31 am
0 said:
I wrote a C program for micro controller and I also added the file system into the program, but
the program cannot be downloaded into the micro controller, is there any way to solve it?
January 13, 2009, 10:21 pm
JITESH said:
How to open a word document in C language.... Can u post the code for this???
January 24, 2009, 12:20 am
anilgodawat said:
How to open a word document in C language.... Can u post the code for this???
February 7, 2009, 10:48 pm
anilgodawat said:
difference between ;
getc and getchar
printf and fprintf
feof and ferror
plz give datail difference between those
February 7, 2009, 10:52 pm
ezza said:
josh said:
hai the information is helpful but i want to know how to create,add record,update or edit,delete
and viewing of records can you please give me some examples of that!!!! please!!!!!!!!!
February 23, 2009, 9:33 pm
All information are important, but I want some example how create a file, edit and delete the
given records.
March 16, 2009, 1:56 am
naresh said:
printf function is used to display data on the screen. but using fprintf we can print data directly
into a file not on the screen.
feof function used to check whether the end of the file has been reached or not.
ferror function is used to identify, whether any error in program exists or not. for example, you
had opened a file in an reading mode, but you are trying to access in writing mode ok.
March 18, 2009, 2:13 am
nandini said:
I am writing a program in C. I want to know how to open excel files in C. How to load excel
files in C. Because basically my program deals with comparison with two excel files. The
problem I am facing is I am not able to open the files and compare. Can you suggest me any
solution.
March 24, 2009, 11:33 pm
When I am working with malloc I got different doubt which is given bellow
int *ptr;
ptr=(int*)malloc(0);
Which gives valid address but my doubt is how compiler find out the size? and how it give
valid address?
April 14, 2009, 6:10 am
Dhivyabala said:
I just want to know how to retrieve details from the file, modify then store.
April 15, 2009, 2:26 pm
mduduzi said:
I want to know how to use data in excel to perform calculation in C programming code.
May 7, 2009, 5:50 am
/* FSEEK.C: This program opens the file FSEEK.OUT and
* moves the pointer to the file's beginning.
*/
#include <stdio.h>
}
fclose( stream );
}
}
Output
File pointer is set to middle of first line.
This is the file 'fseek.out'.