0

如何获得PDF文件大小。?我正在传递直接 pdf url ..有什么想法吗?请

FileInfo info = new FileInfo("C:\\file.txt");
FileAttributes attributes = info.Attributes;
Console.WriteLine(attributes);
info = new FileInfo("C:\\");

在上面的代码中,我没有获取文件信息。所以请告诉我如何获取 pdf 文件大小?

4

2 回答 2

3

试试这个,将以字节为单位返回文件大小

FileInfo info = new FileInfo("PDF file path");
long size = info.Length
于 2013-09-25T04:09:08.380 回答
0

要在 C# 中获取文件大小,请使用:

long fileSize = (new FileInfo(fileName)).Length;

这不工作吗?

于 2013-09-25T04:10:46.687 回答