中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C++ copyfile在復制時如何控制進度

c++
小樊
83
2024-10-16 19:36:18
欄目: 編程語言

在C++中,你可以使用標準庫中的文件流(如 ifstreamofstream)和系統相關的API來實現文件復制,并通過計算已復制的字節數來控制進度。以下是一個簡單的示例,展示了如何使用C++復制文件并顯示進度:

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

void copyFile(const std::string& source, const std::string& destination) {
    std::ifstream src(source, std::ios::binary);
    if (!src) {
        std::cerr << "Error opening source file: " << source << std::endl;
        return;
    }

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

    const size_t bufferSize = 1024 * 1024; // 1 MB
    char buffer[bufferSize];
    size_t totalBytesRead = 0;
    size_t bytesRead;

    while ((bytesRead = src.read(buffer, bufferSize)) > 0) {
        dest.write(buffer, bytesRead);
        totalBytesRead += bytesRead;

        // 計算進度百分比
        double progress = static_cast<double>(totalBytesRead) / src.tellg() * 100;
        std::cout << "Progress: " << progress << "%\r" << std::flush;
    }

    if (src.eof()) {
        std::cout << std::endl;
    } else {
        std::cerr << "Error reading source file: " << source << std::endl;
    }

    src.close();
    dest.close();
}

int main() {
    std::string sourceFile = "source.txt";
    std::string destinationFile = "destination.txt";

    copyFile(sourceFile, destinationFile);

    return 0;
}

在這個示例中,copyFile函數接受源文件名和目標文件名作為參數。它使用ifstream打開源文件,并使用ofstream打開目標文件。然后,它在一個循環中讀取源文件的內容,并將其寫入目標文件。在每次迭代中,它計算已復制的字節數占總字節數的百分比,并輸出進度。

請注意,這個示例僅適用于支持C++11或更高版本的編譯器。如果你使用的是較舊的編譯器,你可能需要調整代碼以適應其限制。

0
米泉市| 盐池县| 澄江县| 桐城市| 分宜县| 连云港市| 南漳县| 丰镇市| 陕西省| 太和县| 察雅县| 张家口市| 陆良县| 周至县| 金湖县| 内黄县| 阳春市| 贵阳市| 长白| 米林县| 梓潼县| 通江县| 恩施市| 济源市| 通州市| 鄂托克前旗| 阜康市| 汕头市| 凤城市| 霍城县| 浏阳市| 扬州市| 遂宁市| 屏东县| 海阳市| 阿合奇县| 嘉祥县| 临沂市| 芦山县| 汽车| 黑河市|