C#编程实现统计文件夹内文件和隐藏文件的方法示例
程序员文章站
2023-12-01 11:35:52
本文实例讲述了c#编程实现统计文件夹内文件和隐藏文件的方法。分享给大家供大家参考,具体如下:
c#统计文件夹内的文件,包括隐藏文件,显示那个隐藏文件...隐藏的..为什么...
本文实例讲述了c#编程实现统计文件夹内文件和隐藏文件的方法。分享给大家供大家参考,具体如下:
c#统计文件夹内的文件,包括隐藏文件,显示那个隐藏文件...隐藏的..为什么别人要隐藏呢..
将程序放在任何文件夹内,点击“当前文件夹”,可以获取文件夹所在的路径,也可以直接输入路径,再点击“显示文件”,就可以看到效果了,下面的状态栏实现统计功能
using system; using system.collections.generic; using system.componentmodel; using system.data; using system.drawing; using system.linq; using system.text; using system.windows.forms; using system.io; namespace windowsformsapplication6 { public partial class form1 : form { int m = 0; public form1() { initializecomponent(); } private void button1_click(object sender, eventargs e) { int i, n = 0,l=0; string[] filen; string filea; listbox1.items.clear(); if (!directory.exists(textbox1.text)) messagebox.show(textbox1.text + "文件夹不存在", "信息提示", messageboxbuttons.ok); else { filen = directory.getfiles(textbox1.text); for (i = 0; i <= filen.length - 1; i++) { filea = string.format("{0}\t{1} {2}", filen[i], file.getcreationtime(filen[i]), fileatt(filen[i])); listbox1.items.add(filea); n++; } } l = m; m = 0; toolstripstatuslabel1.text = "文件数:" + n; toolstripstatuslabel2.text = "被隐藏的文件数:" + l; } public string fileatt(string filename) { string fa = ""; switch (file.getattributes(filename)) { case fileattributes.archive: fa = "存档"; break; case fileattributes.readonly: fa = "只读"; break; case fileattributes.hidden: fa = "隐藏"; m++;break; case fileattributes.archive | fileattributes.readonly: fa = "存档+只读"; break; case fileattributes.archive | fileattributes.hidden: fa = "存档+隐藏";m++;break; case fileattributes.readonly | fileattributes.hidden: fa = "只读+隐藏"; m++;break; case fileattributes.archive | fileattributes.readonly | fileattributes.hidden: fa = "存档+只读+隐藏";m++;break; } return fa; } private void button2_click(object sender, eventargs e) { textbox1.text=system.appdomain.currentdomain.basedirectory.tostring(); } } }
更多关于c#相关内容感兴趣的读者可查看本站专题:《c#文件操作常用技巧汇总》、《c#遍历算法与技巧总结》、《c#程序设计之线程使用技巧总结》、《c#常见控件用法教程》、《winform控件用法总结》、《c#数据结构与算法教程》及《c#面向对象程序设计入门教程》
希望本文所述对大家c#程序设计有所帮助。