FileUtil.ReplaceDirectory 替换文件夹

static function ReplaceFile (src : string, dst : string) : void

Description描述

Replaces a directory.

替换文件夹。

Replaces the directory located at dst with the directory located at src. if dst doesnt exists it copies the file. If dst exists then it deletes it and copies the directory at src to dst

用src指定的文件夹替换Dst 指定的文件夹,如果dst指定的文件夹不存在这个方法会拷贝src指定的文件夹到dst文件夹,如果存在这个方法会下删除dst 指定的文件夹然后从scr指定的文件夹拷贝到dst指定的文件夹。

参见:FileUtil.ReplaceFile

// creates a menu entry that replaces a directory.
//创建一个菜单项,替换一个文件夹

@MenuItem ("Example/Replace Some Directory")
static function ReplaceADirectory () {
	// Replaces the directory at "Folder" with "ReplacedFolder"
	//替换目录中的Folder为ReplacedFolder
	FileUtil.ReplaceDirectory("path/To/Your/Folder", "path/To/Your/ReplacedFolder");
}
最后修改:2011年5月7日 Saturday 11:49

本脚本参考基于Unity 3.4.1f5

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