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.GetFileNameWithoutExtension(string)

Description

Returns the file base component of the specified path string without the extension.

The return value consists of the string returned by GetFileName(), minus the extension separator character and extension.

//Remember to import IO to make Path work.
import System.IO;

function Start () { //This will print "foo". Debug.Log(Path.GetFileNameWithoutExtension("/Some/File/At/foo.extension")); }