将文件或目录从给定路径移动到其他路径。
此函数的路径是相对于项目根文件夹的路径,但它也可以接受绝对路径。
所有文件分隔符都应为正斜杠“/”。
确保在“to”参数的末尾添加文件或目录的名称。
using UnityEngine;
using UnityEditor;
public class MoveFile : MonoBehaviour
{
[MenuItem("Example/Move Something")]
static void MoveSomething()
{
FileUtil.MoveFileOrDirectory("sourcepath/YourFileOrFolder", "destpath/YourFileOrFolder");
}
}