Contains the path to a temporary data / cache directory (Read Only).
This path is unique per Unity project, but it isn't unique for multiple concurrent instances of the same project.
To obtain unique temporary paths, use FileUtil.GetUniqueTempPathInProject.
using UnityEngine;
public class Example : MonoBehaviour { void Start() { // print the path to the temporary data folder print(Application.temporaryCachePath); } }