GetFolderPathMap() public method

public GetFolderPathMap ( string fileName ) : string
fileName string
return string
Example #1
0
        public void Finish()
        {
            var filePath = _mapFileName.EndsWith(".json", StringComparison.OrdinalIgnoreCase)
                ? _mapFileName
                : _mapFileName + ".json";

            File.WriteAllText(_filePathExporter.GetFolderPathMap(filePath), JsonUtility.ToJson(_mapModel, true));
        }