zoukankan      html  css  js  c++  java
  • 复制文件/获取指定目录下的文件夹/获取指定目录下的文件

    1.复制指定文件到指定位置:

    public void AddFile(string sourcefile, string targetfile)
    {
      File.Copy(sourcefile, targetfile, true);
    }

    2.获取指定目录下的所有文件夹名称,返回List

    public List<string> GetDirectoryInfo(string sourcePath)
    {
      List<string> DirectoryList = new List<string>();
      DirectoryInfo TheFolder = new DirectoryInfo(sourcePath);
      //遍历文件夹
      foreach (DirectoryInfo NextFolder in TheFolder.GetDirectories())
        DirectoryList.Add(NextFolder.Name);

      return DirectoryList;
    }

    3.获取指定目录下的所有文件,返回List

    public List<string> GetDocument(string sourcePath)
    {
      List<string> DocumentList = new List<string>();
      DirectoryInfo TheFolder = new DirectoryInfo(sourcePath);
      //遍历文件
      foreach (FileInfo NextFile in TheFolder.GetFiles())
        DocumentList.Add(NextFile.Name);
      return DocumentList;
    }

  • 相关阅读:
    docker学习
    获取程序所有加载的dll名称
    Microsoft.Exchange 发邮件
    EF实体对象解耦
    python并发与futures模块
    python协程
    python上下文管理器
    python迭代器与生成器
    python抽象基类
    python运算符重载
  • 原文地址:https://www.cnblogs.com/xiewei123/p/10902382.html
Copyright © 2011-2022 走看看