DeploymentDownloader.ALFADeployerTool.GetHomeSubfolder C# (CSharp) 메소드

GetHomeSubfolder() 공개 메소드

public GetHomeSubfolder ( string folder ) : string
folder string
리턴 string
        public string GetHomeSubfolder(string folder)
        {
            string target = NWN2HomePath + Path.DirectorySeparatorChar + folder;
            if (!Directory.Exists(target)) throw new Exception(string.Format("Home subfolder '{0}' does not exist.", folder));
            return target;
        }