Dynamo.DynamoPackagesUI.Utilities.PackageManagerCommands.GetCustomPathForInstall C# (CSharp) Method

GetCustomPathForInstall() public method

Get the folder path to install the package
public GetCustomPathForInstall ( ) : string
return string
        public string GetCustomPathForInstall()
        {
            string downloadPath = string.Empty;

            downloadPath = RequestGetDownloadPath();

            if (String.IsNullOrEmpty(downloadPath))
                return string.Empty;

            PackageInstallPath = downloadPath;

            return downloadPath;
        }