在 C++ 中獲取檔案大小

Jinku Hu 2023年1月30日 2020年12月31日
  1. 使用 std::filesystem::file_size 函式在 C++ 中獲取檔案大小
  2. 使用 std::filesystem::file_sizestd::filesystem::path 在 C++ 中獲取檔案大小
  3. 使用 std::filesystem::file_sizeerror_code 在 C++ 中獲取檔案大小
  4. 使用 stat 函式在 C++ 中獲取檔案大小
在 C++ 中獲取檔案大小

本文將演示如何在 C++ 中獲取檔案大小的多種方法。

使用 std::filesystem::file_size 函式在 C++ 中獲取檔案大小

std::filesystem::file_size 是 C++ 檔案系統庫函式,用於檢索檔案的位元組大小。std::filesystem::file_size 使用檔案的路徑作為函式引數,其型別為 std::filesystem::path。在下面的例子中,我們傳遞了檔案路徑的字串值,然後用它來構造相應的物件並檢索檔案大小。

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

using std::cout; using std::cin;
using std::endl; using std::ifstream;

int main() {
    string path = "input.txt";

    cout << "size of file '" << path << "' = " <<
            std::filesystem::file_size(path) << endl;

    return EXIT_SUCCESS;
}

輸出:

size of file 'inbox.txt' = 10440

使用 std::filesystem::file_sizestd::filesystem::path 在 C++ 中獲取檔案大小

std::filesystem::file_size 函式的另一種用法是將檔案路徑值作為 path 型別變數插入。首先,你需要在使用型別之前包含 using std::filesystem::path 語句。接下來,我們可以宣告 path 物件,如下面的示例程式碼所示,並用一個字串文字來初始化它。構造的變數被傳遞給 file_size 函式以獲取檔案大小。

#include <iostream>
#include <string>
#include <fstream>
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <filesystem>

using std::cout; using std::cin;
using std::endl; using std::ifstream;
using std::string; using std::filesystem::path;
using std::error_code;

int main() {
    class path fd_path = "input.txt";

    cout << "size of file '" << fd_path << "' = " <<
            std::filesystem::file_size(fd_path) << endl;

    return EXIT_SUCCESS;
}

輸出:

size of file 'inbox.txt' = 10440

使用 std::filesystem::file_sizeerror_code 在 C++ 中獲取檔案大小

由於 std::filesystem::file_size 利用底層作業系統服務來檢索檔案的大小,所以很有可能會失敗,引發一些異常。為了更好地處理每次 file_size 函式呼叫,建議使用 error_code 物件作為第二個引數,並儲存失敗時的錯誤資訊。因此,我們可以評估 error_code 物件,並使用 if...else 語句實現錯誤處理程式碼。

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

using std::cout; using std::cin;
using std::endl; using std::ifstream;
using std::string; using std::filesystem::path;
using std::error_code;

int main() {
    string path = "input.txt";
    error_code ec{};

    auto size = std::filesystem::file_size(path, ec);
    if (ec == error_code{})
        cout << "size of file '" << path << "' = " << size << endl;
    else
        cout << "Error accessing file '" << path
              << "' message: " << ec.message() << endl;

    return EXIT_SUCCESS;
}

輸出:

size of file 'inbox.txt' = 10440

使用 stat 函式在 C++ 中獲取檔案大小

stat 是符合 POSIX 標準的函式,在多個作業系統中都可以使用。它通常是 std::filesystem::file_size 方法下面的函式。stat 以字串作為第一個引數,表示 struct stat 型別物件的檔案地址的路徑作為第二個引數。

struct stat 是一個特殊的預定義物件,在 stat 函式呼叫成功後,儲存多個檔案引數。需要注意的是,我們只需要訪問 struct stat 物件中的 st_size 資料成員,它以位元組數的形式儲存檔案大小。

#include <iostream>
#include <string>
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>

using std::cout; using std::cin;
using std::endl; using std::ifstream;
using std::string;

int main() {
    string path = "input.txt";
    struct stat sb{};

    if (!stat(path.c_str(), &sb)) {
        cout << "size of file '" << path << "' = "
                << sb.st_size << endl;
    } else {
        perror("stat");
    }

    return EXIT_SUCCESS;
}

輸出:

size of file 'inbox.txt' = 10440
Author: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn

相關文章 - C++ File