C# 如何获取文件大小?
1个回答
展开全部
没啥好的办法,只能用遍历解决,下面是完整的方法,但没考虑到隐藏文件和系统文件。
private long GetDictSize(string path)
{
if (!System.IO.Directory.Exists(path))
return 0;
string[] fs = System.IO.Directory.GetFiles(path, "*.*", System.IO.SearchOption.AllDirectories);
//获取该文件夹中所有的文件名
long ll = 0;
foreach (string f in fs) {
dynamic fa = System.IO.File.GetAttributes(f);
System.IO.FileInfo fi = new System.IO.FileInfo(f);
ll += fi.Length;
}
return ll;
}
private long GetDictSize(string path)
{
if (!System.IO.Directory.Exists(path))
return 0;
string[] fs = System.IO.Directory.GetFiles(path, "*.*", System.IO.SearchOption.AllDirectories);
//获取该文件夹中所有的文件名
long ll = 0;
foreach (string f in fs) {
dynamic fa = System.IO.File.GetAttributes(f);
System.IO.FileInfo fi = new System.IO.FileInfo(f);
ll += fi.Length;
}
return ll;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询