फ़ाइल रिकॉर्ड का एक संग्रह है (या) हार्ड डिस्क पर एक जगह जहां डेटा स्थायी रूप से संग्रहीत किया जाता है।
C कमांड का उपयोग करके, हम फ़ाइलों को विभिन्न तरीकों से एक्सेस कर सकते हैं।
फ़ाइलों पर संचालन
नीचे दिए गए ऑपरेशन हैं जो सी प्रोग्रामिंग भाषा में फाइलों पर किए जा सकते हैं -
- फ़ाइल का नामकरण
- फ़ाइल खोलना
- फ़ाइल से पढ़ना
- फ़ाइल में लिखना
- फ़ाइल बंद करना
सिंटैक्स
खोलने और नामकरण . के लिए सिंटैक्स एक फाइल क्रमशः नीचे दी गई है -
FILE *File pointer;
उदाहरण के लिए, FILE * fptr;
File pointer = fopen (“File name”, “mode”);
उदाहरण के लिए, fptr =fopen ("sample.txt", "r");
FILE *fp; fp = fopen (“sample.txt”, “w”);
फ़ाइल से पढ़ने . के लिए सिंटैक्स इस प्रकार है -
int fgetc( FILE * fp );// read a single character from a file
फ़ाइल में लिखने . के लिए सिंटैक्स इस प्रकार है -
int fputc( int c, FILE *fp ); // write individual characters to a stream
तर्क जो हम वर्तमान निर्देशिका में फ़ाइलों और फ़ोल्डरों को प्रदर्शित करने के लिए उपयोग करते हैं, जहां प्रोग्राम सहेजा गया है, नीचे समझाया गया है -
dr = opendir("."); if(dr!=NULL){ printf("List of Files & Folders:-\n"); for(d=readdir(dr); d!=NULL; d=readdir(dr)){ printf("%s\n", d->d_name); } closedir(dr); }
उदाहरण
निर्देशिका में फ़ाइलों और फ़ोल्डरों को प्रिंट करने के लिए सी प्रोग्राम निम्नलिखित है -
#include<stdio.h> #include<conio.h> #include<dirent.h> int main() { struct dirent *d; DIR *dr; dr = opendir("."); if(dr!=NULL) { printf("List of Files & Folders:-\n"); for(d=readdir(dr); d!=NULL; d=readdir(dr)) { printf("%s\n", d->d_name); } closedir(dr); } else printf("\nerror while opening the directory!"); getch(); return 0; }
आउटपुट
जब उपरोक्त प्रोग्राम को निष्पादित किया जाता है, तो यह निम्न आउटपुट उत्पन्न करता है -
List of Files & Folders:- . .. accessing array.c accessing array.exe accessing array.o bhanu.txt C Programs convert 2 digit no into english word.c convert 2 digit no into english word.exe convert 2 digit no into english word.o DATA delete vowels in string.c delete vowels in string.exe delete vowels in string.o emp.txt EVEN ex.c ex.exe ex.o example pro.c example pro.exe example pro.o fibbinoci serie.c fibbinoci serie.exe fibbinoci serie.o file file example1.c file example1.exe file example1.o file example2.c file example2.exe file example2.o implicit conversion.c implicit conversion.exe implicit conversion.o leap year.c leap year.exe leap year.o little n big endian.c little n big endian.exe little n big endian.o work out examples