Manual     Reference     Scripting  
  
Scripting > Runtime Classes > Path   
  • Menu
  • Overview
  • Runtime Classes
  • Attributes
  • Enumerations
  • Editor Classes
  • Enumerations
  • History
  • Index
  • Path
  • All Members
  • Class Variables
  • AltDirectorySeparatorChar
  • DirectorySeparatorChar
  • Class Functions
  • Combine
  • GetDirectoryName
  • GetExtension
  • GetFileName
  • GetFileNameWithoutExtension

Path.GetFileNameWithoutExtension  

static function GetFileNameWithoutExtension (path : String) : 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.

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

using System.IO;
using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Start() {
Debug.Log(Path.GetFileNameWithoutExtension("/Some/File/At/foo.extension"));
}
}

import System.IO
import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Start():
Debug.Log(Path.GetFileNameWithoutExtension('/Some/File/At/foo.extension'))