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。
// 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