gpt4 book ai didi

c# - 如何查找文件中的字节数?

转载 作者:行者123 更新时间:2023-11-30 13:15:23 26 4
gpt4 key购买 nike

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

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

请帮助我。提前致谢。

最佳答案

您可以使用 FileInfo类得到它的length以字节为单位(作为 Int64):

new FileInfo(filename).Length;

关于c# - 如何查找文件中的字节数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9465334/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com