博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c# 创建文件夹跟遍历文件夹
阅读量:4692 次
发布时间:2019-06-09

本文共 1662 字,大约阅读时间需要 5 分钟。

 

创建文件夹

//文件夹路径        string fulpath = Application.streamingAssetsPath + "/myy/";        string fulpath1 = Application.streamingAssetsPath + "/photo/ui/";//判断文件夹存不存在,不存在就创建        if (!Directory.Exists(fulpath))        {            Directory.CreateDirectory(fulpath);            Directory.CreateDirectory(fulpath1);        }

遍历文件夹里面的文件

if (Directory.Exists(fullPath))        {  //按钮                       DirectoryInfo direction = new DirectoryInfo(fullPath);            FileInfo[] files = direction.GetFiles("*.xml", SearchOption.AllDirectories);            //图片            DirectoryInfo photo = new DirectoryInfo(fullPathPhoto);            FileInfo[] fileoto = photo.GetFiles("*.png", SearchOption.AllDirectories);            // Debug.Log(files.Length);            for (int i = 0; i < files.Length; i++)            {                if (files[i].Name.EndsWith(".meta"))                {                    continue;                }                //if (fileoto[i].Name.EndsWith(".meta")) {                //    continue;                //}                string str = files[i].Name;                string clone = ".xml";                Regex r = new Regex(clone);                Match m = r.Match(str);                //图片                string oto = fileoto[i].Name;                string clo = ".png";                Regex ro = new Regex(clo);                Match mo = ro.Match(oto);                if (m.Success && mo.Success)                {                    str = str.Replace(clone, "");                    oto = oto.Replace(clo, "");                                  }            }            }

 

转载于:https://www.cnblogs.com/qq2351194611/p/11387557.html

你可能感兴趣的文章