Click or drag to resize
FileHelperGetFullPhysicalPath Method
Returns full path of the given path. Does not change the trailing slash

Namespace: CMS.Helpers
Assembly: CMS.Helpers (in CMS.Helpers.dll) Version: 9.0.0
Syntax
C#
public static string GetFullPhysicalPath(
	string originalPath,
	string startingPath,
	string webFullPath
)

Parameters

originalPath
Type: SystemString
Object part of the path (e.g. /Text/text.ascx)
startingPath
Type: SystemString
Starting path of the full path (e.g. ~/CMSWebParts)
webFullPath
Type: SystemString
Full path to the root of the web project (e.g. c:\WebProject\)

Return Value

Type: String
Full path (e.g. c:\WebProject\CMSWebParts\Text\text.ascx)
See Also