Returing Virtual Directory Path From Web Application
If you consume a SPWebApplication object as a parameter, you can return the virtual directory path by using the GetIisSettingsWithFallback() method to return the settings for a specified SharePoint zone.
Here is a static method that demonstrates how to do it:
C#:
-
public static string GetVirtualDirectoryPath(SPWebApplication webApp)
-
{
-
string path = string.Empty;
-
try
-
{
-
if (webApp != null)
-
{
-
path = webApp.GetIisSettingsWithFallback(SPUrlZone.Default).Path.ToString();
-
}
-
}
-
catch (Exception exception)
-
{
-
-
}
-
return path;
-
}
1 Comment »
RSS feed for comments on this post. TrackBack URL





















Articles & Research
SharePoint Architecture
Personal/Off-Topic
Latest Free SharePoint Software
SecureCenter For SharePoint
SharePoint Security Assurance Program™
Free Online SharePoint Security Tools
Online SharePoint Security Health Assessment
Article Or Research Filed Under 
Thanks alot!
I have been looking for this for a few days. This has shortened my code totally.
Is there a way to obtain the Virtual Directory Path of an extended SharePoint web application ?
Thanks alot again,
Bobby.
Comment by Bobby — March 3, 2010 @ 4:23 pm