在 C++ 中獲取檔案大小

Jinku Hu 2023年10月12日
  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 <filesystem>
#include <fstream>
#include <iostream>
#include <string>

using std::cin;
using std::cout;
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 <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>

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

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

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 <filesystem>
#include <fstream>
#include <iostream>
#include <string>

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

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 <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>

#include <iostream>
#include <string>

using std::cin;
using std::cout;
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
作者: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

DelftStack.com 創辦人。Jinku 在機器人和汽車行業工作了8多年。他在自動測試、遠端測試及從耐久性測試中創建報告時磨練了自己的程式設計技能。他擁有電氣/ 電子工程背景,但他也擴展了自己的興趣到嵌入式電子、嵌入式程式設計以及前端和後端程式設計。

LinkedIn Facebook

相關文章 - C++ File