mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-02 14:45:25 +02:00
[282599] [dstore] log folder that is not a hidden one
This commit is contained in:
parent
2d57b79f85
commit
f505a440e8
1 changed files with 5 additions and 1 deletions
|
@ -3583,7 +3583,11 @@ public final class DataStore
|
|||
if (logDirectory == null){
|
||||
logDirectory = ".eclipse" + File.separator + "RSE" + File.separator; //$NON-NLS-1$//$NON-NLS-2$
|
||||
}
|
||||
|
||||
// append a '/' if not there
|
||||
if (logDirectory.charAt( logDirectory.length() -1 ) != File.separatorChar ) {
|
||||
logDirectory = logDirectory + File.separator;
|
||||
}
|
||||
|
||||
_userPreferencesDirectory = _userPreferencesDirectory + logDirectory + clientUserID;
|
||||
|
||||
File dirFile = new File(_userPreferencesDirectory);
|
||||
|
|
Loading…
Add table
Reference in a new issue