//遍历所选文件夹,查找该文件夹以及子文件夹中 后缀为 .prefab的文件路径
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using System.IO;
public class CameraMove : MonoBehaviour {
// 在菜单来创建 选项 , 点击该选项执行搜索代码
[MenuItem("Tools/遍历项目所有文件夹")]
static void CheckSceneSetting()
{
List<string> dirs = new List<string>();
GetDirs(Application.dataPath, ref dirs);
}
//参数1 为要查找的总路径, 参数2 保存路径
private static void GetDirs(string dirPath, ref List<string> dirs)
{
foreach (string path in Directory.GetFiles(dirPath))
{
//获取所有文件夹中包含后缀为 .prefab 的路径
if (System.IO.Path.GetExtension(path) == ".prefab")
{
dirs.Add(path.Substring(path.IndexOf("Assets")));
Debug.Log(path.Substring(path.IndexOf("Assets")));
}
}
if (Directory.GetDirectories(dirPath).Length > 0) //遍历所有文件夹
{
foreach (string path in Directory.GetDirectories(dirPath))
{
GetDirs(path, ref dirs);
}
}
}
}
Unity遍历所选文件夹中包含某后缀名的文件路径
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 转载:http://blog.csdn.net/liqiangeastsun/article/details/42...
- 最近项目需要获取手机图片的路径,然后记录图片的文件名及其文件夹名。用到的方法为两种:int java.lang.S...
- 【蝴蝶效应】 蝴蝶效应:上个世纪70年代,美国一个名叫洛伦兹的气象学家在解释空气系统理论时说,亚马逊雨林一只蝴蝶...
- Windows操作系统中的Path环境变量: 当系统运行一个程序而没有告诉它程序所在的完整路径时,系统除了在当...