如何将文件从 res:// 位置复制到 user:// godot 中的位置

How to copy file from res:// location to user:// location in godot

我正在尝试将文件从 res:// 位置移动到 user:// 位置。下面是我的代码

#copydb
var dir = Directory.new();
dir.copy("res://gk.db","user://gk.db");

但我收到以下错误

Parse Error: Unexpected token: Identifier:dir

我在一个函数中尝试了你的代码并缩进了它。没有错误。您可能正在函数之外编写该代码。当我这样做时,我得到了你的错误。