返回无扩展名的指定路径字符串的文件基本组件。
返回值由 GetFileName() 返回的字符串组成,其中需去掉 扩展名分隔符和扩展名。
using System.IO; using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Start() { Debug.Log(Path.GetFileNameWithoutExtension("/Some/File/At/foo.extension")); } }