Caching.GetAllCachePaths

切换到手册
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 } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961