在 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