FileUtil 文件工具
Lets you do move, copy, delete operations over files or directories
可以让你在文件或者文件夹上进行移动,复制,删除操作。
Note: This is an editor class. To use it you have to place your script in Assets/Editor inside your project folder. Editor classes are in the UnityEditor namespace so for C# scripts you need to add "using UnityEditor;" at the beginning of the script.
注意:这是一个编辑器类,如果想使用它你需要把它放到工程目录下的Assets/Editor文件夹下。编辑器类在UnityEditor命名空间下。所以当使用C#脚本时,你需要在脚本前面加上 "using UnityEditor"引用。
Class Functions类函数
-
Deletes a file or a directory given a path.
删除给定路径的文件或者文件夹。 -
Copies a file or a directory.
复制文件或者文件夹。 -
Copies the file or directory.
复制文件或者文件夹。 -
Moves a file or a directory from a given path to another path.
从给定的路径中移动文件或目录到另一个路径。 -
Returns a unique path in the Temp folder within your current project.
返回一个在当前项目中的临时目录的唯一路径。 -
Replaces a file.
替换文件。 -
Replaces a directory.
替换文件夹。
最后修改:2011年5月7日 Saturday 15:34