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

getLibaryDownloadPath() public static method

public static getLibaryDownloadPath ( ) : string
return string
        public static string getLibaryDownloadPath()
        {

            string path = "";
            path = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
            path = path + "/aspose/dotnet/libraries/";

            if (!Directory.Exists(path))
                Directory.CreateDirectory(path);
            return path;

        }