Path.Combine 合并
static function Combine (path1 : string, path2 : string) : string
Description描述
Concatenates two path strings.
连接两个路径字符串。
If path1 does not end with a valid separator character DirectorySeparatorChar is appended to path1 prior to the concatenation.
如果path1没有一个有效的结束分隔符,在合并之前DirectorySeparatorChar将被追加到path1。
using System.IO;
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
void Start() {
Debug.Log(Path.Combine("/First/Path/To", "Some/File/At/foo.txt"));
}
}
//Remember to import IO to make Path work.
//记得导入IO,使路径正常工作
import System.IO;
function Start () {
//This will print "/First/Path/To/Some/File/At/foo.txt".
//这将打印"/First/Path/To/Some/File/At/foo.txt"
Debug.Log(Path.Combine("/First/Path/To", "Some/File/At/foo.txt"));
}
最后修改:2011年3月11日 Friday 12:08