码迷,mamicode.com
首页 > 编程语言 > 详细

Unity 获取指定资源目录下的所有文件

时间:2017-10-20 18:23:53      阅读:671      评论:0      收藏:0      [点我收藏+]

标签:路径   pos   meta   lld   unit   文件   content   end   arch   

 //路径  

string fullPath = "Assets/Models/21/21000001" + "/";  

//获取指定路径下面的所有资源文件  

if (Directory.Exists(fullPath)){  

            DirectoryInfo direction = new DirectoryInfo(fullPath);  

            FileInfo[] files = direction.GetFiles("*",SearchOption.AllDirectories);  

            Debug.Log(files.Length);  

   for(int i=0;i<files.Length;i++){  

      if (files[i].Name.EndsWith(".meta")){  

      continue;  

           }  

                Debug.Log( "Name:" + files[i].Name );  

    //Debug.Log( "FullName:" + files[i].FullName );  

    //Debug.Log( "DirectoryName:" + files[i].DirectoryName );  

          }  

}  

 
 

Unity 获取指定资源目录下的所有文件

标签:路径   pos   meta   lld   unit   文件   content   end   arch   

原文地址:http://www.cnblogs.com/FingerCaster/p/7700164.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!