暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ProjectPath.cs 282B

123456789101112
  1. using System.IO;
  2. namespace Unity.PlasticSCM.Editor.AssetUtils
  3. {
  4. internal static class ProjectPath
  5. {
  6. internal static string FromApplicationDataPath(string dataPath)
  7. {
  8. return Path.GetDirectoryName(Path.GetFullPath(dataPath));
  9. }
  10. }
  11. }