C 的遍历文件夹返回列表类_C/C++语言_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

C 的遍历文件夹返回列表类

作者:黑客防线网安C/C++教程基地 来源:黑客防线网安C/C++教程基地 浏览次数:0

本篇关键词:返回文件夹 public
黑客防线网安网讯:     using System;    using System.Collections.Generic;    using System.Collections;    using System.Text;    using System.IO;    namespace Jiangmingxiang.Program.FileList    {...
     using System;
    using System.Collections.Generic;
    using System.Collections;
    using System.Text;
    using System.IO;
    namespace Jiangmingxiang.Program.FileList
    {
    public class FileList
    {
    //字段声明
    private ArrayList myfilelistpath = new ArrayList();
    private ArrayList myfilelistname = new ArrayList();
    //属性声明
    public ArrayList GetFileListPath
    {
    get { return myfilelistpath; }
    }
    public ArrayList GetFileListName
    {
    get { return myfilelistname; }
    }
    //构造函数
    public FileList(string sourceDirectory)
    {
    DirectoryInfo diSource = new DirectoryInfo(sourceDirectory);
    ListAll(diSource);
    }
    public void ListAll(DirectoryInfo source)
    {
    foreach (FileInfo fi in source.GetFiles())
    {
    myfilelistpath.Add(fi.FullName + fi.Name);
    myfilelistname.Add(fi.Name);
    }
    foreach (DirectoryInfo diSourceSubDir in source.GetDirectories())
    {
    ListAll(diSourceSubDir);
    }
    }
    }
    }
    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-15243-1.html
网站维护教程更新时间:2012-04-04 22:52:12  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer