C#获取文件夹下所有的文件

 更新时间:2024年10月24日 11:52:03   作者:DotnetNb  
这篇文章主要为大家详细介绍了C#中获取文件夹下所有的文件的多种方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下

1、获得当前运行程序的路径

string rootPath = Directory.GetCurrentDirectory();

2、获得该文件夹下的文件,返回类型为FileInfo

 string path=@"X:\XXX\XX";
 DirectoryInfo root = new DirectoryInfo(path);
 FileInfo[] files=root.GetFiles();

3、获得该文件夹下的子目录,返回类型为DirectoryInfo

 string path=@"X:\XXX\XX";
 DirectoryInfo root = new DirectoryInfo(path);
 DirctoryInfo[] dics=root.GetDirectories();

4、获得文件夹名

string path=@"X:\XXX\XX";
 DirectoryInfo root = new DirectoryInfo(path);
string dicName=root.Name;

5、获得文件夹完整的路径名

 string path=@"X:\XXX\XX";
 DirectoryInfo root = new DirectoryInfo(path);
 string dicName=root.FullName;

6、获取文件的Name和FullName

 string path=@"X:\XXX\XX";
 DirectoryInfo root = new DirectoryInfo(path);
foreach (FileInfo f in root.GetFiles())
{
    string name=f.Name;
    string fullName=f.FullName;
} 

7.只获取目录下一级的文件夹与文件

String path = @"X:\xxx\xxx";
 
 //第一种方法
  string[] files = Directory.GetFiles(path, "*.txt");
              
 foreach (string file in files)
 {
      Console.WriteLine(file);
  }
  
 //第二种方法
 DirectoryInfo folder = new DirectoryInfo(path);
             
 foreach (FileInfo file in folder.GetFiles("*.txt"))
 {
     Console.WriteLine(file.FullName);
 }

8.递归地输出当前运行程序所在的磁盘下的所有文件名和子目录名

    static void Main(string[] args)
          {
              //获取当前程序所在的文件路径
              String rootPath = Directory.GetCurrentDirectory();
              string parentPath = Directory.GetParent(rootPath).FullName;//上级目录
              string topPath = Directory.GetParent(parentPath).FullName;//上上级目录
              StreamWriter sw = null;
              try
              {
                 //创建输出流,将得到文件名子目录名保存到txt中
                 sw = new StreamWriter(new FileStream("fileList.txt", FileMode.Append));
                 sw.WriteLine("根目录:" + topPath);
                 getDirectory(sw, topPath, 2);
             }
             catch (IOException e)
            {
                 Console.WriteLine(e.Message);
             }
             finally
             {
                 if (sw != null)
                 {
                     sw.Close();
                     Console.WriteLine("完成");
                 }
             }
 
         }
 
         /// <summary>
         /// 获得指定路径下所有文件名
         /// </summary>
         /// <param name="sw">文件写入流</param>
         /// <param name="path">文件写入流</param>
         /// <param name="indent">输出时的缩进量</param>
         public static void getFileName(StreamWriter sw, string path, int indent)
         {
             DirectoryInfo root = new DirectoryInfo(path);
             foreach (FileInfo f in root.GetFiles())
             {
                 for (int i = 0; i < indent; i++)
                 {
                     sw.Write("  ");
                 }
                 sw.WriteLine(f.Name);
             }
         }
 
        /// <summary>
         /// 获得指定路径下所有子目录名
         /// </summary>
         /// <param name="sw">文件写入流</param>
         /// <param name="path">文件夹路径</param>
         /// <param name="indent">输出时的缩进量</param>
         public static void getDirectory(StreamWriter sw, string path, int indent)
         {
             getFileName(sw, path, indent);
             DirectoryInfo root = new DirectoryInfo(path);
             foreach (DirectoryInfo d in root.GetDirectories())
             {
                 for (int i = 0; i < indent; i++)
                 {
                     sw.Write("  ");
                 }
                 sw.WriteLine("文件夹:" + d.Name);
                 getDirectory(sw, d.FullName, indent + 2);
                 sw.WriteLine();
             }
         }

到此这篇关于C#获取文件夹下所有的文件的文章就介绍到这了,更多相关C#获取文件夹文件内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • C# Math中常用数学运算的示例详解

    C# Math中常用数学运算的示例详解

    Math 为通用数学函数、对数函数、三角函数等提供常数和静态方法,使用起来非常方便。这篇文章主要为大家介绍几个常用的数学运算的使用,需要的可以参考一下
    2022-11-11
  • C#推送信息到APNs的方法

    C#推送信息到APNs的方法

    这篇文章主要介绍了C#推送信息到APNs的方法,涉及C#推送通知到苹果APNs的实现技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2015-05-05
  • c#将字节数组转成易读的字符串的实现

    c#将字节数组转成易读的字符串的实现

    这篇文章主要介绍了c#将字节数组转成易读的字符串的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-01-01
  • C#判断日期是否到期的方法

    C#判断日期是否到期的方法

    这篇文章主要介绍了C#判断日期是否到期的方法,是C#程序设计中非常实用的技巧,需要的朋友可以参考下
    2014-08-08
  • .Net WInform开发笔记(五)关于事件Event

    .Net WInform开发笔记(五)关于事件Event

    我前面几篇博客中提到过.net中的事件与Windows事件的区别,本文讨论的是前者,也就是我们代码中经常用到的Event,感兴趣的朋友可以了解下
    2013-01-01
  • C#向无窗口的进程发送消息

    C#向无窗口的进程发送消息

    这篇文章主要介绍了C#向无窗口的进程发送消息 的相关资料,需要的朋友可以参考下
    2016-05-05
  • C#根据IP地址查询所属地区实例详解

    C#根据IP地址查询所属地区实例详解

    这篇文章主要介绍了C#根据IP地址查询所属地区实例详解,调用的接口是免费的接口,有需要的同学可以研究下
    2021-03-03
  • C#实现多文件打包压缩(.Net Core)

    C#实现多文件打包压缩(.Net Core)

    本文详细讲解了.Net Core框架下C#实现多文件打包压缩的方法,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2021-12-12
  • C# DataTable使用方法详解

    C# DataTable使用方法详解

    这篇文章主要为大家详细介绍了C# DataTable的使用方法,感兴趣的小伙伴们可以参考一下
    2016-02-02
  • C#对文件/文件夹操作代码汇总

    C#对文件/文件夹操作代码汇总

    有关文件的操作的内容非常多,不过几乎都是从下面的这些基础方法中演化出来的。比如对内容的修改,不外乎就是加上点字符串操作或者流操作。还有其它一些特别的内容,等在开发项目中具体遇到后再添加。
    2015-04-04

最新评论