如何查找文件中的字节数

本文关键字:文件 字节数 查找 何查找 | 更新日期: 2023-09-27 18:25:59

我正在C#中进行应用程序。在这里,我想找出特定文件中的字节数。这里我使用代码作为

using(FileStream fs=new FileStream(filename,FileMode.Open,FileAccess.Read))
{
    //Here i want to find the number of Bytes.
    //Some more code.
}

请帮帮我。提前谢谢。

如何查找文件中的字节数

您可以使用FileInfo类来获取其字节长度(作为Int64):

new FileInfo(filename).Length;

使用FileStream.Length属性。

获取流的长度(以字节为单位)。