/// <summary> /// Utility method to return the local users home directory on the local machine. /// </summary> /// <remarks> /// This returns the users profile directory, for example if the user "lee" is currently logged /// on then this will return "C:\Documents and settings\lee". /// </remarks> /// <returns>The local home directory of the currently logged on user.</returns> /// <exception cref="Maverick.SSH.SSHException"/> public static String GetHomeDirectory() { return(SupportClass.GetHomeDir()); }