在C++中,我們可以使用標準庫中的<fstream>
頭文件來處理文件操作。以下是一些基本的文件操作示例:
#include <iostream>
#include <fstream>
int main() {
std::ifstream file("example.txt"); // 使用ifstream打開文件
if (!file.is_open()) { // 檢查文件是否成功打開
std::cerr << "無法打開文件" << std::endl;
return 1;
}
return 0;
}
#include <iostream>
#include <fstream>
#include <string>
int main() {
std::ifstream file("example.txt");
if (!file.is_open()) {
std::cerr << "無法打開文件" << std::endl;
return 1;
}
std::string line;
while (std::getline(file, line)) { // 逐行讀取文件內容
std::cout << line << std::endl;
}
file.close();
return 0;
}
#include <iostream>
#include <fstream>
int main() {
std::ofstream file("example.txt"); // 使用ofstream打開文件
if (!file.is_open()) {
std::cerr << "無法打開文件" << std::endl;
return 1;
}
file << "Hello, World!" << std::endl; // 寫入文本到文件
file.close();
return 0;
}
#include <iostream>
#include <fstream>
int main() {
std::ofstream file("example.txt", std::ios::app); // 使用ofstream打開文件并追加內容
if (!file.is_open()) {
std::cerr << "無法打開文件" << std::endl;
return 1;
}
file << "This is an appended line." << std::endl; // 追加文本到文件
file.close();
return 0;
}
#include <iostream>
#include <fstream>
int main() {
std::ifstream file("example.txt");
if (!file.is_open()) {
std::cerr << "無法打開文件" << std::endl;
return 1;
}
std::cout << "文件狀態:" << (file.good() ? "正常" : "異常") << std::endl;
std::cout << "文件位置:" << file.tellg() << std::endl;
file.close();
return 0;
}
在上述示例中,我們使用了file.close()
來關閉文件。在實際編程中,建議在完成文件操作后及時關閉文件,以釋放資源。在某些情況下,例如在程序結束時或在異常處理中,文件對象會自動關閉。但在某些情況下,顯式關閉文件是一個好習慣。