ফাইল হল রেকর্ডের একটি সংগ্রহ (বা) হার্ড ডিস্কের একটি জায়গা যেখানে ডেটা স্থায়ীভাবে সংরক্ষণ করা হয়।
C কমান্ড ব্যবহার করে, আমরা বিভিন্ন উপায়ে ফাইল অ্যাক্সেস করতে পারি।
ফাইলগুলিতে অপারেশনগুলি
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); }
উদাহরণ
একটি ডিরেক্টরিতে ফাইল এবং ফোল্ডার প্রিন্ট করার জন্য C প্রোগ্রামটি নিচে দেওয়া হল −
#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