博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Unity--- 资源路径问题
阅读量:4934 次
发布时间:2019-06-11

本文共 645 字,大约阅读时间需要 2 分钟。

使用 System.IO.Path 这个API得到的路径,其实也是以"\"分隔路径的。

我们在windows下打开资源管理器,某个目录或文件的路径为:E:\uniuProject5.6.2\plan\配置表
使用Unity的API,打印Application.dataPath 时,打印出:E:/LgsTest/XDanceLearn/Art/Art/Assets,是以“/”为分隔符的

///     /// 格式化路径成Asset的标准格式    ///     ///     /// 
public static string GetAssetPath(string filePath) { var newFilePath1 = filePath.Replace("\\", "/"); var newFilePath2 = newFilePath1.Replace("//", "/").Trim(); newFilePath2 = newFilePath2.Replace("///", "/").Trim(); newFilePath2 = newFilePath2.Replace("\\\\", "/").Trim(); return newFilePath2; }

 

转载于:https://www.cnblogs.com/luguoshuai/p/9933452.html

你可能感兴趣的文章