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

用asp.net实现遍历目录文件和子目录的代码

复制代码 代码如下:


using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Threading;

namespace copefile
{
    class Program
    {
        static void Main(string[] args)
        {
            string testDir = "e:/xunlei/";
            listFiles(testDir,0);
            Console.ReadKey();
        }

        public static void listFiles(string dir, int level)
        {
           //阿会楠练习作品,程序多有参考
            try
            {
                //获取文件列表
                string[] files = Directory.GetFiles(dir);

                String preStr = "";
                for (int i = 0; i < level; i++)
                {
                    preStr += "    ";
                }

                foreach (string f in files)
                {
                    if (f.LastIndexOf("\\") == -1)
                    {
                        Console.WriteLine(preStr + f.Substring(f.LastIndexOf("https://www.jb51.net/") + 1));
                    }
                    else
                    {
                        Console.WriteLine(preStr + f.Substring(f.LastIndexOf("\\") + 1));
                    }

                }

                //获取目录列表
                string[] dirs = Directory.GetDirectories(dir);
                foreach (string d in dirs)
                {
                    if (d.LastIndexOf("\\") == -1)
                    {
                        Console.WriteLine(preStr + d.Substring(d.LastIndexOf("https://www.jb51.net/") + 1));
                    }
                    else
                    {
                        Console.WriteLine(preStr + d.Substring(d.LastIndexOf("\\") + 1));
                    }
                    if (Directory.Exists(d))
                    {
                        listFiles(d, level + 1);
                    }
                }

            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }
    }
}

您可能感兴趣的文章:

相关文章

最新评论

站长推荐

正版 Windows 10

正版Windows 10 家庭/专业版,操作系统限时抢购[¥1088→¥248]

站长推荐

正版 Office 软件

Microsoft Office 2016/2019/365 正版最低价仅需[ ¥148元]

大家感兴趣的内容

最近更新的内容

常用在线小工具

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjfjwf.html