指定されたパス文字列の拡張子を返します
戻り値となる拡張子には、パスの他の文字と区切るためのピリオドが含まれます。
//Remember to import IO to make Path work. import System.IO;
function Start () { //This will print ".extension". Debug.Log(Path.GetExtension("/Some/File/At/foo.extension")); }
using System.IO; using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Start() { Debug.Log(Path.GetExtension("/Some/File/At/foo.extension")); } }