手机
当前位置:查字典教程网 >编程开发 >asp.net教程 >asp.net 获取目录下的文件数和文件夹数
asp.net 获取目录下的文件数和文件夹数
摘要:复制代码代码如下:intj=0;protectedvoidButton1_Click(objectsender,EventArgse){Di...

复制代码 代码如下:

int j = 0;

protected void Button1_Click(object sender, EventArgs e)

{

DirectoryInfo dir = new DirectoryInfo(TextBox1.Text.ToString());

Label1.Text = GetAllFiles(dir).ToString();

}GetAllFiles方法为自定义方法,实现遍历整个文件夹文件的方法。代码如下:

public int GetAllFiles(DirectoryInfo dir)

{

FileSystemInfo[] fileinfo = dir.GetFileSystemInfos();

foreach (FileSystemInfo i in fileinfo)

{

if (i is DirectoryInfo)

{

GetAllFiles((DirectoryInfo)i);

}

else

{

j++;

}

}

return j;

}

//=================================================

string[] Directorys = System.IO.Directory.GetDirectories("D:","*");

for(int i=0; i <Directorys.Length; i )

{

Response.Write(Directorys " <br/>");

}

Response.Write("统计目录:" Directorys.Length "个 <br/>--------- <br>");

//=================================================

string[] Files = System.IO.Directory.GetFiles("D:","*");

for(int i=0; i <Files.Length; i )

{

Response.Write(Files " <br/>");

}

Response.Write("统计文件:" Files.Length "个 <br/>--------- <br>");

【asp.net 获取目录下的文件数和文件夹数】相关文章:

asp.net文件上传示例

asp.net发邮件的几种方法汇总

asp.net下大文件上传知识整理

asp.net 文件下载实现代码

asp.net Repeater取得CheckBox选中的某行某个值

asp.net Repeater取得CheckBox选中的某行某个值的c#写法

asp.net读取excel中的数据并绑定在gridview

asp.net实现文件无刷新上传方法汇总

asp.net遍历目录文件夹和子目录所有文件

asp.net简化接收参数值的函数

精品推荐
分类导航