summaryrefslogtreecommitdiffstats
path: root/core/io/file_access.cpp
diff options
context:
space:
mode:
authorHilderin <81109165+Hilderin@users.noreply.github.com>2024-06-11 20:11:10 -0400
committerHilderin <81109165+Hilderin@users.noreply.github.com>2024-08-20 21:23:13 -0400
commit1b0c5cbc01b43b837a658fdd25373a773b3dbdc4 (patch)
treec4e00d7e65dd7cc535e7c37db229995096b9571f /core/io/file_access.cpp
parentee363af0ed65f6ca9a906f6065d0bd9c19dcf9e4 (diff)
downloadredot-engine-1b0c5cbc01b43b837a658fdd25373a773b3dbdc4.tar.gz
Fix FileSystem dock won't show any file folders (v2)
Diffstat (limited to 'core/io/file_access.cpp')
-rw-r--r--core/io/file_access.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/core/io/file_access.cpp b/core/io/file_access.cpp
index 1cf388b33a..c857d54925 100644
--- a/core/io/file_access.cpp
+++ b/core/io/file_access.cpp
@@ -59,11 +59,9 @@ bool FileAccess::exists(const String &p_name) {
return true;
}
- Ref<FileAccess> f = open(p_name, READ);
- if (f.is_null()) {
- return false;
- }
- return true;
+ // Using file_exists because it's faster than trying to open the file.
+ Ref<FileAccess> ret = create_for_path(p_name);
+ return ret->file_exists(p_name);
}
void FileAccess::_set_access_type(AccessType p_access) {