CmisSync.Lib.Config.Config.GetHomePath C# (CSharp) Method

GetHomePath() public method

Path to the user's home folder.
public GetHomePath ( ) : string
return string
        public string GetHomePath() {
            if (Backend.Platform == PlatformID.Win32NT) {
                return Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
            } else {
                return Environment.GetFolderPath(Environment.SpecialFolder.Personal);
            }
        }