1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

22478: Can't duplicate folder with another folder inside

This commit is contained in:
Dualtagh Murray
2018-10-02 16:19:11 +01:00
parent b05efd98ff
commit f325896c80

View File

@@ -431,8 +431,12 @@ Error DirAccess::copy_dir(String p_from, String p_to, int p_chmod_flags) {
ERR_FAIL_COND_V(err, err); ERR_FAIL_COND_V(err, err);
} }
if (!p_to.ends_with("/")) {
p_to = p_to + "/";
}
DirChanger dir_changer(this, p_from); DirChanger dir_changer(this, p_from);
Error err = _copy_dir(target_da, p_to + "/", p_chmod_flags); Error err = _copy_dir(target_da, p_to, p_chmod_flags);
memdelete(target_da); memdelete(target_da);
return err; return err;