Home folder: Difference between revisions

From FreeMind
Jump to navigationJump to search
(+forum link; some new findings on how JRE determines the value of "user.home", thanks to the research of user bmaj posted to the forums)
Line 1: Line 1:
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:
{| {{Table style}}
! 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==
==User home folder==


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 type "echo %homepath%". To see the usual path to FreeMind home folder, type "echo %HOMEPATH%\.freemind". A related system variable is %userprofile%. However, Java may determine the value of "user.home" without the use of %homepath% and %userprofile%, relying instead on the location of user desktop as stated in Windows registry. Nevertheless, user desktop is usually located at the path "%homepath%\Desktop", so "echo %HOMEPATH%\.freemind" usually gives the correct location of FreeMind home folder. This is to be researched.


In Linux: Run a console and type "echo $HOME".
In Linux: Run a console and type "echo $HOME".
==Links==
* [http://en.wikipedia.org/wiki/Home_directory Wikipedia: Home directory]
[[Category:Development]]

Revision as of 15:56, 26 August 2010

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 type "echo %homepath%". To see the usual path to FreeMind home folder, type "echo %HOMEPATH%\.freemind". A related system variable is %userprofile%. However, Java may determine the value of "user.home" without the use of %homepath% and %userprofile%, relying instead on the location of user desktop as stated in Windows registry. Nevertheless, user desktop is usually located at the path "%homepath%\Desktop", so "echo %HOMEPATH%\.freemind" usually gives the correct location of FreeMind home folder. This is to be researched.

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