summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-10-08 15:17:32 +0200
committerGitHub <noreply@github.com>2020-10-08 15:17:32 +0200
commitabbd58dcb07dcedfb105c513368d782634b0e731 (patch)
treec1a3259833ae54cdd9531861201e596e25ea1689
parent899b9004278b6998eda12bb486c854eb8c41bbb1 (diff)
parentbb2684f4a71ea6cc150824223a3ec864770a56e2 (diff)
Merge pull request #42621 from KoBeWi/into_nothingness_no_more
Cancel rename if file does not exist
-rw-r--r--core/bind/core_bind.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/bind/core_bind.cpp b/core/bind/core_bind.cpp
index c68222c767..88e31c56fe 100644
--- a/core/bind/core_bind.cpp
+++ b/core/bind/core_bind.cpp
@@ -1743,11 +1743,13 @@ Error _Directory::rename(String p_from, String p_to) {
ERR_FAIL_COND_V_MSG(!is_open(), ERR_UNCONFIGURED, "Directory must be opened before use.");
if (!p_from.is_rel_path()) {
DirAccess *d = DirAccess::create_for_path(p_from);
+ ERR_FAIL_COND_V_MSG(!d->file_exists(p_from), ERR_DOES_NOT_EXIST, "File does not exist.");
Error err = d->rename(p_from, p_to);
memdelete(d);
return err;
}
+ ERR_FAIL_COND_V_MSG(!d->file_exists(p_from), ERR_DOES_NOT_EXIST, "File does not exist.");
return d->rename(p_from, p_to);
}