AsposeVisualStudioPluginPdf.Core.AsposeComponentsManager.getAsposeHomePath C# (CSharp) Méthode

getAsposeHomePath() public static méthode

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

Usage Example

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