1. 首页
  2. 数据库
  3. 其它
  4. C#实现获取文件夹大小的方法

C#实现获取文件夹大小的方法

上传者: 2021-02-01 14:47:44上传 PDF文件 40.85KB 热度 7次
本文实例讲述了C#实现获取文件夹大小的方法。分享给大家供大家参考。具体如下: 当然了,首先都需要引入System.IO这个命名空间 第一个方法: public static long GetDirectoryLength(string dirPath) { //判断给定的路径是否存在,如果不存在则退出 if (!Directory.Exists(dirPath)) return 0; long len = 0; //定义一个DirectoryInfo对象 DirectoryInfo di = new DirectoryInfo(dirPath); /
用户评论