Subtext.Providers.BlogEntryEditor.FCKeditor.FileBrowserConnector.ServerMapFolder C# (CSharp) Method

ServerMapFolder() private method

private ServerMapFolder ( string folderPath ) : string
folderPath string
return string
        private string ServerMapFolder( string folderPath )
        {
            // Get the resource type directory.
            string sResourceTypePath = Server.MapPath(GetImageRootPath());

            // Return the resource type directory combined with the required path.
            return Path.Combine( sResourceTypePath, folderPath.TrimStart('/') ) ;
        }