Warehouse.PackageHandling.DeployedConfigFile.GetResourceFullPath C# (CSharp) Метод

GetResourceFullPath() публичный Метод

public GetResourceFullPath ( string appsFolder ) : string
appsFolder string
Результат string
        public string GetResourceFullPath(string appsFolder) {

            string resourceFolder = appsFolder;
            resourceFolder = Path.Combine(resourceFolder, this.Namespace);
            resourceFolder = Path.Combine(resourceFolder, this.Channel);
            resourceFolder = Path.Combine(resourceFolder, this.Version);
            resourceFolder = Path.Combine(resourceFolder, this.ResourceFolder);
            resourceFolder = resourceFolder.TrimEnd(Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar);
            return Path.GetFullPath(resourceFolder);  // Fixes the DirectorySeparatorChar

        }