Carrotware.Web.UI.Controls.FileDataHelper.MakeWebFolderPath C# (CSharp) Method

MakeWebFolderPath() public static method

public static MakeWebFolderPath ( string sDirPath ) : string
sDirPath string
return string
        public static string MakeWebFolderPath(string sDirPath)
        {
            string sPathPrefix = "/";

            if (!String.IsNullOrEmpty(sDirPath)) {
                sPathPrefix = sDirPath.Replace(WWWPath, @"/");
            }
            sPathPrefix = MakeFilePathUniform(sPathPrefix);

            return sPathPrefix;
        }