Application.temporaryCachePath 临时数据路径

static var temporaryCachePath : string

Description描述

Contains the path to a temporary data / cache directory (Read Only).

包含一个临时数据/缓存目录的路径(只读)。

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

该值是一个目录路径,临时数据可以被保存。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Awake() {
		print(Application.temporaryCachePath);
	}
}
// print the path to the temporary data folder
//打印路径到临时数据文件夹

print (Application. temporaryCachePath);
最后修改:2011年4月16日 Saturday 13:35

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。