mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 20:23:53 +00:00
parent
2940475c71
commit
8920bb8c1b
@ -1466,7 +1466,7 @@ List<String> EditorExportPlatformPC::get_binary_extensions(const Ref<EditorExpor
|
||||
Error EditorExportPlatformPC::export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags) {
|
||||
ExportNotifier notifier(*this, p_preset, p_debug, p_path, p_flags);
|
||||
|
||||
if (!FileAccess::exists(p_path.get_base_dir())) {
|
||||
if (!DirAccess::exists(p_path.get_base_dir())) {
|
||||
return ERR_FILE_BAD_PATH;
|
||||
}
|
||||
|
||||
|
@ -1499,7 +1499,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
if (!FileAccess::exists(p_path.get_base_dir())) {
|
||||
if (!DirAccess::exists(p_path.get_base_dir())) {
|
||||
return ERR_FILE_BAD_PATH;
|
||||
}
|
||||
|
||||
|
@ -839,7 +839,7 @@ Error EditorExportPlatformIOS::export_project(const Ref<EditorExportPreset> &p_p
|
||||
}
|
||||
}
|
||||
|
||||
if (!FileAccess::exists(dest_dir)) {
|
||||
if (!DirAccess::exists(dest_dir)) {
|
||||
return ERR_FILE_BAD_PATH;
|
||||
}
|
||||
|
||||
|
@ -211,7 +211,7 @@ Error EditorExportPlatformJavaScript::export_project(const Ref<EditorExportPrese
|
||||
template_path = find_export_template(EXPORT_TEMPLATE_WEBASSEMBLY_RELEASE);
|
||||
}
|
||||
|
||||
if (!FileAccess::exists(p_path.get_base_dir())) {
|
||||
if (!DirAccess::exists(p_path.get_base_dir())) {
|
||||
return ERR_FILE_BAD_PATH;
|
||||
}
|
||||
|
||||
|
@ -425,7 +425,7 @@ Error EditorExportPlatformOSX::export_project(const Ref<EditorExportPreset> &p_p
|
||||
}
|
||||
}
|
||||
|
||||
if (!FileAccess::exists(p_path.get_base_dir())) {
|
||||
if (!DirAccess::exists(p_path.get_base_dir())) {
|
||||
return ERR_FILE_BAD_PATH;
|
||||
}
|
||||
|
||||
|
@ -1265,7 +1265,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
if (!FileAccess::exists(p_path.get_base_dir())) {
|
||||
if (!DirAccess::exists(p_path.get_base_dir())) {
|
||||
return ERR_FILE_BAD_PATH;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user