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