Skip to main content

TryAcquireTemporaryCachePath

Description

Get current App temporary cache Path.

Return

TypeDescription
StringCurrent app's temporary cache path

Method

public string TryAcquireTemporaryCachePath()

Example

internal static API ARMODAPI = new API(nameof(APITest));
private void OnLoad(){
var tmp_TemporaryPath = ARMODAPI.TryAcquireTemporaryCachePath();
Debug.Log($"Path:{tmp_TemporaryPath}");
}