版本:Unity 6 (6000.0)
语言英语
  • C#

缓存.GetAllCachePaths

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们会阅读每个来自用户建议的更改,并在适用时进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请在几分钟后再重试。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public static void GetAllCachePaths(List<string> cachePaths);

参数

cachePaths 所有缓存路径的列表。

说明

返回缓存列表中缓存的所有路径。

using System.IO;
using System.Collections.Generic;
using UnityEngine;

public class Example : MonoBehaviour { void GetAllCachePathExample() { Directory.CreateDirectory("Cache1"); Directory.CreateDirectory("Cache2"); Directory.CreateDirectory("Cache3");

Cache c1 = Caching.AddCache("Cache1"); //Placed in cache list at position 1 Cache c2 = Caching.AddCache("Cache2"); //Placed in cache list at position 2 Cache c3 = Caching.AddCache("Cache3"); //Placed in cache list at position 3

List<string> cachePaths = new List<string>(); Caching.GetAllCachePaths(cachePaths);

//cachePaths[0] is Cache1 //cachePaths[1] is Cache2 //cachePaths[2] is Cache3 } }