通过插件以编程方式 refresh/synchronize IntelliJ IDEA 项目
Programmatically refresh/synchronize an IntelliJ IDEA project via a plugin
有没有办法通过插件以编程方式refresh/synchronize IntelliJ IDEA 项目?
我正在开发一个在活动项目中创建文件的 IntelliJ IDEA 插件。我想通过插件自动 refresh/synchronize 项目,以便用户可以立即看到更改。这在 IntelliJ IDEA 中可行吗?
在深入挖掘之后,我找到了以下解决方案并且它起作用了。
public void actionPerformed(AnActionEvent e) {
// Create/Modify files
// Get the project from the ActionEvent
Project project = e.getData(PlatformDataKeys.PROJECT);
// Get the Base Dir and refresh with the following parameters
// 'asynchronous' set to false and 'recursive' set to true
project.getBaseDir().refresh(false,true);
}
你可以为它使用 SyncAction
SyncProjectAction().actionPerformed(actionEvent)
有没有办法通过插件以编程方式refresh/synchronize IntelliJ IDEA 项目?
我正在开发一个在活动项目中创建文件的 IntelliJ IDEA 插件。我想通过插件自动 refresh/synchronize 项目,以便用户可以立即看到更改。这在 IntelliJ IDEA 中可行吗?
在深入挖掘之后,我找到了以下解决方案并且它起作用了。
public void actionPerformed(AnActionEvent e) {
// Create/Modify files
// Get the project from the ActionEvent
Project project = e.getData(PlatformDataKeys.PROJECT);
// Get the Base Dir and refresh with the following parameters
// 'asynchronous' set to false and 'recursive' set to true
project.getBaseDir().refresh(false,true);
}
你可以为它使用 SyncAction
SyncProjectAction().actionPerformed(actionEvent)