Home folder: Difference between revisions

From FreeMind
Jump to navigationJump to search
No edit summary
 
(9 intermediate revisions by 3 users not shown)
Line 9: Line 9:
! Folder path
! Folder path
|-
|-
| 0.8.1 || Windows Vista || C:\Users\(your user name)\.freemind\
| [[Release 0.8.1|0.8.1]] || Windows Vista || C:\Users\(your user name)\.freemind\
|-
|-
| 0.8.1 || Windows 2000 and XP || C:\Documents and Settings\(your user name)\.freemind\
| 0.8.1 || Windows 2000 and XP || C:\Documents and Settings\(your user name)\.freemind\
Line 17: Line 17:
| 0.8.1 || Mac OS X || /Users/(your user name)/.freemind
| 0.8.1 || Mac OS X || /Users/(your user name)/.freemind
|-
|-
| 0.7.1 || Windows 2000 and XP || C:\Documents and Settings\(your user name)\freemind\
| [[Release 0.7.1|0.7.1]] || Windows 2000 and XP || C:\Documents and Settings\(your user name)\freemind\
|-
|-
| 0.7.1 || Windows 98 || C:\WINDOWS\freemind\
| 0.7.1 || Windows 98 || C:\WINDOWS\freemind\
Line 26: Line 26:
Finding out about the user's home folder, in which the folder ".freemind" typically resides:
Finding out about the user's home folder, in which the folder ".freemind" typically resides:


In Windows: Run DOS console (Windows + R, followed by "cmd"), and type "echo %homepath%". To see the usual path to FreeMind home folder, type "echo %HOMEPATH%\.freemind". A related system variable is %userprofile%.
''In Windows'': Run DOS console (Windows + R, followed by "cmd"), and enter this:
: REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Desktop
Strip off the last part of the resulting path, to get what Java considers to be your home folder. Another method, one that often leads to an incorrect result, is to enter "echo %homepath%". Sources: [http://bugs.sun.com/view_bug.do?bug_id=4787931 Java bug 4787931].


In Linux: Run a console and type "echo $HOME".
''In Linux'': Run a console and type "echo $HOME".
 
==Implementation==
Method [http://freemind.git.sourceforge.net/git/gitweb.cgi?p=freemind/freemind;a=blob;f=freemind/freemind/main/FreeMind.java;hb=HEAD FreeMind].getFreemindDirectory: return System.getProperty("user.home") + File.separator + getProperty("properties_folder");
 
==Tracker items==
* Bug: [http://sourceforge.net/tracker/index.php?func=detail&aid=3304466&group_id=7118&atid=107118 Settings in Windows network with shared desktops], 2011-05-19


==Links==
==Links==

Latest revision as of 14:19, 4 March 2023

FreeMind home folder is the folder to which user settings, user icons, automatic backups and other FreeMind related files are stored.

In general and by default and in FreeMind version 0.8.1 and later, FreeMind home folder is the subfolder ".freemind" of the home folder of the user. The path of the home folder of the user, also known as home directory, depends on the operating system.

Some cases of paths of FreeMind home folder, depending on the operating system:

FreeMind version Operating system Folder path
0.8.1 Windows Vista C:\Users\(your user name)\.freemind\
0.8.1 Windows 2000 and XP C:\Documents and Settings\(your user name)\.freemind\
0.8.1 Windows 98 C:\WINDOWS\.freemind\
0.8.1 Mac OS X /Users/(your user name)/.freemind
0.7.1 Windows 2000 and XP C:\Documents and Settings\(your user name)\freemind\
0.7.1 Windows 98 C:\WINDOWS\freemind\

User home folder

Finding out about the user's home folder, in which the folder ".freemind" typically resides:

In Windows: Run DOS console (Windows + R, followed by "cmd"), and enter this:

REG QUERY "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Desktop

Strip off the last part of the resulting path, to get what Java considers to be your home folder. Another method, one that often leads to an incorrect result, is to enter "echo %homepath%". Sources: Java bug 4787931.

In Linux: Run a console and type "echo $HOME".

Implementation

Method FreeMind.getFreemindDirectory: return System.getProperty("user.home") + File.separator + getProperty("properties_folder");

Tracker items

Links