Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Path.GetExtension(string)

Description

Returns 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")); }