这是第一个 Unity 开放项目的repo,是 Unity 和社区合作创建的一个小型开源游戏演示,第一款游戏是一款名为 Chop Chop 的动作冒险游戏。
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

70 行
1.4 KiB

using System;
using System.IO;
using UnityEngine;
public static class FileManager
{
public static bool WriteToFile(string fileName, string fileContents)
{
var fullPath = Path.Combine(Application.persistentDataPath, fileName);
try
{
File.WriteAllText(fullPath, fileContents);
return true;
}
catch (Exception e)
{
Debug.LogError($"Failed to write to {fullPath} with exception {e}");
return false;
}
}
public static bool LoadFromFile(string fileName, out string result)
{
var fullPath = Path.Combine(Application.persistentDataPath, fileName);
if(!File.Exists(fullPath))
{
File.WriteAllText(fullPath, "");
}
try
{
result = File.ReadAllText(fullPath);
return true;
}
catch (Exception e)
{
Debug.LogError($"Failed to read from {fullPath} with exception {e}");
result = "";
return false;
}
}
public static bool MoveFile(string fileName, string newFileName)
{
var fullPath = Path.Combine(Application.persistentDataPath, fileName);
var newFullPath = Path.Combine(Application.persistentDataPath, newFileName);
try
{
if (File.Exists(newFullPath))
{
File.Delete(newFullPath);
}
if (!File.Exists(fullPath))
{
return false;
}
File.Move(fullPath, newFullPath);
}
catch (Exception e)
{
Debug.LogError($"Failed to move file from {fullPath} to {newFullPath} with exception {e}");
return false;
}
return true;
}
}