• 大小: 23.40M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 播放器  源代码  代码  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.Serialization.Formatters.Binary;
using System.Security.AccessControl;
using System.Text;
using System.Windows.Forms;

namespace DMPlay
{
   public class API
   {

        #region 文件夹搜索

       /// 
        /// 递归获取文件夹目录下文件
        /// 

        /// 需要递归遍历的文件夹
        /// 遍历规则『委托』
        public static void LoopFolder(string pathName Action fileRule)
        {
            if (string.IsNullOrEmpty(pathName))
                throw new ArgumentNullException(pathName);

            Queue _pathQueue = new Queue();
            _pathQueue.Enqueue(pathName);
    

评论

共有 条评论