Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseReturns the extension component of the specified path string.
The extension returned includes the . character used to separate the extension from the rest of the path.
//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")); } }
import System.IO import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Start() as void: Debug.Log(Path.GetExtension('/Some/File/At/foo.extension'))