AsposeVisualStudioPluginPdf.Core.AsposeComponentsManager.getAsposeHomePath C# (CSharp) Method

getAsposeHomePath() public static method

public static getAsposeHomePath ( ) : string
return string
        public static string getAsposeHomePath()
        {
            string path = "";
            path = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
            path = path + "/aspose/dotnet/";
            return path;
        }

Usage Example

Example #1
0
 public static string getLocalRepositoryPath(AsposeComponent component)
 {
     return(AsposeComponentsManager.getAsposeHomePath() + "gitrepos" + "/" + component.get_name());
 }