| | |
| | | configEntry.getConfigAttribute(profileDirStub); |
| | | if (profileDirAttr != null) |
| | | { |
| | | profileDirectory = profileDirAttr.activeValue(); |
| | | profileDirectory = |
| | | getFileForPath(profileDirAttr.activeValue()).getAbsolutePath(); |
| | | } |
| | | } |
| | | catch (Exception e) |
| | |
| | | configEntry.getConfigAttribute(profileDirStub); |
| | | if (profileDirAttr != null) |
| | | { |
| | | File dirFile = new File(profileDirAttr.activeValue()); |
| | | File dirFile = getFileForPath(profileDirAttr.activeValue()); |
| | | if (! (dirFile.exists() && dirFile.isDirectory())) |
| | | { |
| | | msgID = MSGID_PLUGIN_PROFILER_INVALID_PROFILE_DIR; |
| | |
| | | String dirString = profileDirAttr.pendingValue(); |
| | | if (! dirString.equals(profileDirectory)) |
| | | { |
| | | File dirFile = new File(dirString); |
| | | File dirFile = getFileForPath(dirString); |
| | | if (! (dirFile.exists() && dirFile.isDirectory())) |
| | | { |
| | | msgID = MSGID_PLUGIN_PROFILER_INVALID_PROFILE_DIR; |
| | |
| | | } |
| | | else |
| | | { |
| | | profileDirectory = dirString; |
| | | profileDirectory = dirFile.getAbsolutePath(); |
| | | |
| | | if (detailedResults) |
| | | { |