Returns the file name, including the extension if any, of the specified path string.
The return value consists of the characters after the last directory character in path. If the last character of path is a directory separator character, returns an empty string.
//Remember to import IO to make Path work. import System.IO;
function Start () { //This will print "foo.extension". Debug.Log(Path.GetFileName("/Some/File/At/foo.extension")); }
no example available in C#
Did you find this page useful? Please give it a rating: