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

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。