C++ में किसी फ़ाइल का आकार प्राप्त करने के लिए सबसे पहले फ़ाइल को खोलें और उसे अंत तक खोजें। बताओ () हमें स्ट्रीम की वर्तमान स्थिति बताएगा, जो फ़ाइल में बाइट्स की संख्या होगी।
उदाहरण
#include<iostream> #include<fstream> using namespace std; int main() { ifstream in_file("a.txt", ios::binary); in_file.seekg(0, ios::end); int file_size = in_file.tellg(); cout<<"Size of the file is"<<" "<< file_size<<" "<<"bytes"; }
आउटपुट
Size of the file is 44 bytes