Path.GetDirectoryName Manual     Reference     Scripting  
Scripting > Runtime Classes > Path
Path.GetDirectoryName

static function GetDirectoryName (path : String) : String

Description

Returns the directory name component of the specified path string.

The string returned by this method consists of all characters between the first and last DirectorySeparatorChar or AltDirectorySeparatorChar character in the path. The first separator character is included, but the last separator character is not included in the returned string.

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

function Start () {
//This will print "/Path/To/A/File".
Debug.Log(Path.GetDirectoryName("/Path/To/A/File/foo.txt"));
}