1. 程式人生 > >Unity--- 資源路徑問題

Unity--- 資源路徑問題

使用 System.IO.Path 這個API得到的路徑,其實也是以"\"分隔路徑的。
我們在windows下開啟資源管理器,某個目錄或檔案的路徑為:E:\uniuProject5.6.2\plan\配置表
使用Unity的API,列印Application.dataPath 時,打印出:E:/LgsTest/XDanceLearn/Art/Art/Assets,是以“/”為分隔符的

/// <summary>
    /// 格式化路徑成Asset的標準格式
    /// </summary>
    /// <param name="filePath"></param>
    ///
<returns></returns> 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; }