Contains the path to a persistent data directory (Read Only).
// print the path to the persistent data folder print (Application. persistentDataPath);
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Example() { print(Application.persistentDataPath); } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def Example() as void: print(Application.persistentDataPath)