unity 通过代码查找一个文件夹下的所有文件

 //路径  
        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

  

http://blog.csdn.net/u014370148/article/details/69261110--转这位博客主   非常感谢!

 

 

你可能感兴趣的:(unity)