TryAcquireTemporaryCachePath
Description
Get current App temporary cache Path.
Return
Type | Description |
---|---|
String | Current 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}");
}