Eclipseプラグインからファイルを検索したい。次のコードを使用しましたが、機能しませんでした。
IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
String str = JOptionPane.showInputDialog(null,
"Please enter the search file name");
for (IProject project : root.getProjects()) {
IFile file = project.getFile(str);
if (file.exists()) {
JOptionPane.showMessageDialog(null, file.getName());
} else {
JOptionPane.showMessageDialog(null, "File Not Found! ");
}
}