diff options
author | kobewi <kobewi4e@gmail.com> | 2024-11-12 21:38:46 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-11-12 21:38:46 +0100 |
commit | 0875523f6b2ba9f8e8000fb71a64067c204933f6 (patch) | |
tree | b13b34361d68892d8b3d53ea4cbd1488025d5421 /editor/editor_file_system.cpp | |
parent | cb411fa960f0b7fdbd97dcdb4c90f9346360ee0e (diff) | |
download | redot-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.cpp | 3 |
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) { |