You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto parent_directory = LexicalPath::dirname(Project::config_file_path);
1660
+
auto absolute_config_file_path = LexicalPath::absolute_path(m_project->root_path(), Project::config_file_path);
1661
+
1662
+
if (!Core::File::exists(absolute_config_file_path)) {
1663
+
if (Core::File::exists(parent_directory) && !Core::File::is_directory(parent_directory)) {
1664
+
GUI::MessageBox::show_error(window(), String::formatted("Cannot create the '{}' directory because there is already a file with that name", parent_directory));
0 commit comments