亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

C++ copyfile復制文件時怎樣處理錯誤

c++
小樊
87
2024-10-16 19:32:20
欄目: 編程語言

在C++中,你可以使用std::ifstreamstd::ofstream來復制文件。如果在復制過程中遇到錯誤,你可以檢查相關流的狀態并相應地處理錯誤。以下是一個簡單的示例,展示了如何使用C++復制文件并處理可能的錯誤:

#include <iostream>
#include <fstream>
#include <string>

bool copyFile(const std::string& sourcePath, const std::string& destinationPath) {
    std::ifstream sourceFile(sourcePath, std::ios::binary);
    if (!sourceFile) {
        std::cerr << "Error opening source file: " << sourcePath << std::endl;
        return false;
    }

    std::ofstream destinationFile(destinationPath, std::ios::binary);
    if (!destinationFile) {
        std::cerr << "Error opening destination file: " << destinationPath << std::endl;
        sourceFile.close();
        return false;
    }

    destinationFile << sourceFile.rdbuf();
    if (destinationFile.fail()) {
        std::cerr << "Error copying file: " << destinationPath << std::endl;
        sourceFile.close();
        destinationFile.close();
        return false;
    }

    sourceFile.close();
    destinationFile.close();
    return true;
}

int main() {
    std::string sourcePath = "source.txt";
    std::string destinationPath = "destination.txt";

    if (copyFile(sourcePath, destinationPath)) {
        std::cout << "File copied successfully!" << std::endl;
    } else {
        std::cerr << "Failed to copy file." << std::endl;
    }

    return 0;
}

在這個示例中,copyFile函數接受兩個參數:源文件路徑和目標文件路徑。函數首先嘗試打開源文件和目標文件。如果任何一個文件無法打開,函數將返回false并輸出錯誤信息。

接下來,函數將源文件的內容復制到目標文件中。如果在復制過程中發生錯誤,函數將返回false并輸出錯誤信息。如果復制成功完成,函數將關閉兩個文件并返回true

main函數中,我們調用copyFile函數并檢查其返回值。如果函數返回true,則表示文件復制成功。否則,我們將輸出一條錯誤消息。

0
岳阳县| 安福县| 清苑县| 商洛市| 深泽县| 武宁县| 松江区| 龙门县| 茌平县| 莱芜市| 永顺县| 乐昌市| 内丘县| 瑞丽市| 南康市| 当雄县| 濉溪县| 禄丰县| 谷城县| 闻喜县| 吴川市| 山西省| 浏阳市| 政和县| 孟连| 六安市| 阳山县| 横山县| 新晃| 庆阳市| 花莲县| 屏东市| 玛纳斯县| 石林| 山丹县| 叶城县| 盐津县| 衡阳县| 建瓯市| 岚皋县| 芜湖市|