在 C++ 中,要在檔案末端追加內容,可以使用 fstream 函式庫中的 open() 和 seekg() 函數:使用 open() 函數以追加模式開啟檔案。使用 seekg() 函數將檔案指標移到檔案末端。使用插入運算子 (
如何使用C++ 在檔案結尾追加內容
在C++ 中,可以使用檔案運算子fstream
的open()
和seekg()
等來在檔案最後追加內容。
程式碼範例:
#include <fstream> #include <iostream> using namespace std; int main() { // 打开文件 fstream file; file.open("my_file.txt", ios::app); // 移动文件指针到文件末尾 file.seekg(0, ios::end); // 追加内容 file << "追加的内容\n"; // 关闭文件 file.close(); return 0; }
實戰案例:
此程式碼可以用來將日誌資訊追加到日誌檔案中。例如:
#include <fstream> #include <ctime> using namespace std; int main() { // 打开日志文件 fstream file; file.open("log.txt", ios::app); // 获取当前时间 time_t now = time(0); tm *ltm = localtime(&now); // 将当前时间的日志信息追加到文件中 file << "[" << ltm->tm_year + 1900 << "-" << ltm->tm_mon + 1 << "-" << ltm->tm_mday << " " << ltm->tm_hour << ":" << ltm->tm_min << ":" << ltm->tm_sec << "] 日志信息\n"; // 关闭日志文件 file.close(); return 0; }
以上是如何使用C++在檔案最後追加內容?的詳細內容。更多資訊請關注PHP中文網其他相關文章!