// Update is called once per frame //private void Update () { //} //Get the storage information //ストレージの情報を取得する public void GetInfo() { XDebug.Clear(); //XDebug.Log("Application.dataPath = " + Application.dataPath); //ゲームデータのフォルダーパスを返します(読み取り専用) XDebug.Log("Application.persistentDataPath = " + Application.persistentDataPath); //永続的なデータディレクトリのパスを返します(読み取り専用) //XDebug.Log("Application.streamingAssetsPath = " + Application.streamingAssetsPath); //StreamingAssets フォルダーへのパスが含まれています(読み取り専用) //XDebug.Log("Application.temporaryCachePath = " + Application.temporaryCachePath); //一時的なデータ、キャッシュのディレクトリパスを返します(読み取り専用)値はデータを保存できる一時的なディレクトリパスです。 #if !UNITY_EDITOR && UNITY_ANDROID XDebug.Log("----------------------------"); XDebug.Log("IsExternalStorageEmulated = " + AndroidPlugin.IsExternalStorageEmulated()); XDebug.Log("IsExternalStorageRemovable = " + AndroidPlugin.IsExternalStorageRemovable()); XDebug.Log("IsExternalStorageMounted = " + AndroidPlugin.IsExternalStorageMounted()); XDebug.Log("IsExternalStorageMountedReadOnly = " + AndroidPlugin.IsExternalStorageMountedReadOnly()); XDebug.Log("IsExternalStorageMountedReadWrite = " + AndroidPlugin.IsExternalStorageMountedReadWrite()); XDebug.Log("GetExternalStorageState = " + AndroidPlugin.GetExternalStorageState()); XDebug.Log("GetExternalStorageDirectory = " + AndroidPlugin.GetExternalStorageDirectory()); XDebug.Log("GetExternalStorageDirectoryAlarms = " + AndroidPlugin.GetExternalStorageDirectoryAlarms()); XDebug.Log("GetExternalStorageDirectoryDCIM = " + AndroidPlugin.GetExternalStorageDirectoryDCIM()); XDebug.Log("GetExternalStorageDirectoryDocuments = " + AndroidPlugin.GetExternalStorageDirectoryDocuments()); XDebug.Log("GetExternalStorageDirectoryDownloads = " + AndroidPlugin.GetExternalStorageDirectoryDownloads()); XDebug.Log("GetExternalStorageDirectoryMovies = " + AndroidPlugin.GetExternalStorageDirectoryMovies()); XDebug.Log("GetExternalStorageDirectoryMusic = " + AndroidPlugin.GetExternalStorageDirectoryMusic()); XDebug.Log("GetExternalStorageDirectoryNotifications = " + AndroidPlugin.GetExternalStorageDirectoryNotifications()); XDebug.Log("GetExternalStorageDirectoryPictures = " + AndroidPlugin.GetExternalStorageDirectoryPictures()); XDebug.Log("GetExternalStorageDirectoryPodcasts = " + AndroidPlugin.GetExternalStorageDirectoryPodcasts()); XDebug.Log("GetExternalStorageDirectoryRingtones = " + AndroidPlugin.GetExternalStorageDirectoryRingtones()); #endif }