Version: 2017.2

Application.temporaryCachePath

Switch to Manual
public static string temporaryCachePath ;

Description

Содержит путь к временным данным / директории кэша (Read Only).

The value is a directory path where temporary data can be stored.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(Application.temporaryCachePath); } }