diff options
author | GNSS-Stylist <gnssstylist@sci.fi> | 2024-02-09 18:11:02 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-13 10:39:03 +0100 |
commit | c5e1b327c6a0177baadba1fa936b6037fec70b10 (patch) | |
tree | 5a84ede57d5219ef937fd653e81b1faddcf396f0 /drivers | |
parent | 9272f7b53db1f7f142df43981adec5cebdfbd179 (diff) | |
download | redot-engine-c5e1b327c6a0177baadba1fa936b6037fec70b10.tar.gz |
Fix invalid file path handling in Windows when there is dot in the file name
This basically re-adds dot-removal removed by the previous commit.
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/windows/file_access_windows.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/windows/file_access_windows.cpp b/drivers/windows/file_access_windows.cpp index 163ac4152c..aae06505cd 100644 --- a/drivers/windows/file_access_windows.cpp +++ b/drivers/windows/file_access_windows.cpp @@ -60,7 +60,12 @@ void FileAccessWindows::check_errors() const { bool FileAccessWindows::is_path_invalid(const String &p_path) { // Check for invalid operating system file. - String fname = p_path.get_file().get_basename().to_lower(); + String fname = p_path.get_file().to_lower(); + + int dot = fname.find("."); + if (dot != -1) { + fname = fname.substr(0, dot); + } return invalid_files.has(fname); } |