AsposeVisualStudioPluginPdf.Core.AsposeComponentsManager.getAsposeHomePath C# (CSharp) Метод

getAsposeHomePath() публичный статический Метод

public static getAsposeHomePath ( ) : string
Результат string
        public static string getAsposeHomePath()
        {
            string path = "";
            path = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
            path = path + "/aspose/dotnet/";
            return path;
        }

Usage Example

Пример #1
0
 public static string getLocalRepositoryPath(AsposeComponent component)
 {
     return(AsposeComponentsManager.getAsposeHomePath() + "gitrepos" + "/" + component.get_name());
 }