溫馨提示×

C++中怎么進行文件操作

c++
小億
95
2024-03-11 14:30:29
欄目: 編程語言

在C++中進行文件操作通常需要包含頭文件。以下是一些常用的文件操作函數(shù):

  1. 打開文件:
#include <fstream>
#include <iostream>

int main() {
    std::ifstream file("input.txt"); // 打開一個文件用于讀取
    //std::ofstream file("output.txt"); // 打開一個文件用于寫入
    //std::fstream file("file.txt"); // 打開一個文件用于讀寫

    if(file.is_open()) {
        std::cout << "文件打開成功" << std::endl;
    } else {
        std::cout << "文件打開失敗" << std::endl;
    }

    file.close(); // 關閉文件
    return 0;
}
  1. 讀取文件內(nèi)容:
#include <fstream>
#include <iostream>

int main() {
    std::ifstream file("input.txt");

    if(file.is_open()) {
        std::string line;
        while(std::getline(file, line)) {
            std::cout << line << std::endl;
        }
    } else {
        std::cout << "文件打開失敗" << std::endl;
    }

    file.close();
    return 0;
}
  1. 寫入文件內(nèi)容:
#include <fstream>
#include <iostream>

int main() {
    std::ofstream file("output.txt");

    if(file.is_open()) {
        file << "Hello, World!" << std::endl;
    } else {
        std::cout << "文件打開失敗" << std::endl;
    }

    file.close();
    return 0;
}
  1. 定位到文件指定位置進行讀寫:
#include <fstream>
#include <iostream>

int main() {
    std::fstream file("file.txt");

    if(file.is_open()) {
        file.seekp(5); // 將寫入位置定位到第5個字符
        file << "Hello";
        
        file.seekg(0); // 將讀取位置定位到開頭
        std::string content;
        file >> content;
        std::cout << content << std::endl;
    } else {
        std::cout << "文件打開失敗" << std::endl;
    }

    file.close();
    return 0;
}

這些是C++中常用的文件操作函數(shù),可以根據(jù)具體需求進行調(diào)用。

0