在C++中,可以使用標準庫中的<fstream>
頭文件來實現Linux下的文件操作。以下是一些基本的文件操作示例:
#include <iostream>
#include <fstream>
int main() {
std::ifstream file("example.txt"); // 以讀模式打開文件
if (!file) {
std::cerr << "無法打開文件" << std::endl;
return 1;
}
return 0;
}
#include <iostream>
#include <fstream>
#include <string>
int main() {
std::ifstream file("example.txt");
if (!file) {
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");
if (!file) {
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); // 以追加模式打開文件
if (!file) {
std::cerr << "無法打開文件" << std::endl;
return 1;
}
file << "This is a new line." << std::endl;
file.close();
return 0;
}
在上面的示例中,我們已經在讀取和寫入文件后關閉了文件。你也可以使用file.close()
來顯式關閉文件。但是,當文件流對象離開其作用域時,析構函數會自動關閉文件。
這些示例展示了如何在Linux下使用C++進行基本的文件操作。你可以根據需要擴展這些示例,以實現更多高級的文件操作功能。