summaryrefslogtreecommitdiffstats
path: root/editor/editor_file_system.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2024-11-12 21:38:46 +0100
committerkobewi <kobewi4e@gmail.com>2024-11-12 21:38:46 +0100
commit0875523f6b2ba9f8e8000fb71a64067c204933f6 (patch)
treeb13b34361d68892d8b3d53ea4cbd1488025d5421 /editor/editor_file_system.cpp
parentcb411fa960f0b7fdbd97dcdb4c90f9346360ee0e (diff)
downloadredot-engine-0875523f6b2ba9f8e8000fb71a64067c204933f6.tar.gz
Remove corresponding .uid file when removing file
Diffstat (limited to 'editor/editor_file_system.cpp')
-rw-r--r--editor/editor_file_system.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_file_system.cpp b/editor/editor_file_system.cpp
index cc81001efb..b5306154ba 100644
--- a/editor/editor_file_system.cpp
+++ b/editor/editor_file_system.cpp
@@ -1516,6 +1516,9 @@ void EditorFileSystem::_delete_internal_files(const String &p_file) {
}
da->remove(p_file + ".import");
}
+ if (FileAccess::exists(p_file + ".uid")) {
+ DirAccess::remove_absolute(p_file + ".uid");
+ }
}
int EditorFileSystem::_insert_actions_delete_files_directory(EditorFileSystemDirectory *p_dir) {