mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
a better fix for IDEA-88207 Attempt to reopen ipr-based project is rejected with "does not exist" error message
This commit is contained in:
@@ -25,6 +25,7 @@ import com.intellij.openapi.ui.Messages;
|
||||
import com.intellij.openapi.util.io.FileUtil;
|
||||
|
||||
import java.awt.event.InputEvent;
|
||||
import java.io.File;
|
||||
|
||||
/**
|
||||
* @author yole
|
||||
@@ -50,8 +51,8 @@ public class ReopenProjectAction extends AnAction implements DumbAware {
|
||||
final int modifiers = e.getModifiers();
|
||||
final boolean forceOpenInNewFrame = (modifiers & InputEvent.CTRL_MASK) != 0 || (modifiers & InputEvent.SHIFT_MASK) != 0;
|
||||
Project project = PlatformDataKeys.PROJECT.getData(e.getDataContext());
|
||||
if (!RecentProjectsManagerBase.isValidProjectPath(myProjectPath)) {
|
||||
Messages.showErrorDialog(project, "The directory " + FileUtil.toSystemDependentName(myProjectPath) + " does not exist.\n" +
|
||||
if (!new File(myProjectPath).exists()) {
|
||||
Messages.showErrorDialog(project, "The path " + FileUtil.toSystemDependentName(myProjectPath) + " does not exist.\n" +
|
||||
"If it is on a removable or network drive, please make sure that the drive is connected.",
|
||||
"Reopen Project");
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user