FileUtil.ReplaceFile 替换文件

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

Description描述

Replaces a file.

替换文件。

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

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

参见: FileUtil.ReplaceDirectory

// creates a menu entry that replaces a file.
//创建一个菜单项,替换一个文件
@MenuItem ("Example/Replace Some file")
static function ReplaceAfile () {
	// Replaces the directory at "File" with "ReplacedFile"
	//替换目录中的File为ReplacedFile
	FileUtil.ReplaceFile("path/To/Your/File", "path/To/Your/ReplacedFile");
}
最后修改:2011年5月7日 Saturday 11:46

本脚本参考基于Unity 3.4.1f5

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