在 C# 中獲取檔案大小

Muhammad Maisam Abbas 2021年4月29日
在 C# 中獲取檔案大小

本教程將討論在 C# 中計算檔案大小的方法。

使用 C# 中的 FileInfo.Length 屬性獲取檔案大小

FileInfo提供了用於在 C# 中建立,開啟,複製,刪除和移動檔案的方法。FileInfo.Length 屬性獲取檔案的大小(以位元組為單位)。我們首先要初始化 FileInfo 類的物件,並將路徑傳遞到檔案作為建構函式的引數。以下程式碼示例向我們展示瞭如何使用 C# 中的 FileInfo.Length 屬性獲取檔案的檔案大小。

using System;
using System.IO;

namespace file_size
{
    class Program
    {
        static void Main(string[] args)
        {
            FileInfo fileinfo = new FileInfo("dark.jpg");
            Console.WriteLine(fileinfo.Length);
        }
    }
}

輸出:

246804

在上面的程式碼中,我們初始化了 FileInfo 類的例項 fileinfo,並在建構函式中傳遞了路徑 dark.jpg。然後,我們使用 C# 中的 fileinfo.Length 屬性列印 dark.jpg 檔案的檔案大小。此處的輸出顯示檔案 dark.jpg 的大小為 246804 位元組。

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

相關文章 - Csharp File