Пример #1
0
 /// <summary>
 ///  Returns the URL of the file, relative to the current web-application's path.
 /// </summary>
 /// <param name="fileInfo"></param>
 /// <returns></returns>
 public static string getRelativeUrl(FileInfo fileInfo)
 {
     return(PathUtils.getRelativeUrl(fileInfo));
 }
Пример #2
0
 /// <summary>
 ///  Returns the URL of the file, relative to the current web-application's path.
 /// </summary>
 /// <param name="FullFilePath">the full file path (including drive name, path, and filename) of the resource on disk. Eg: "C:\Inetpub\wwwroot\hatCms\UserFiles\Image\(Evening Grosbeak)  J Elser.jpg"</param>
 /// <returns></returns>
 public static string getRelativeUrl(string FullFilePath)
 {
     return(PathUtils.getRelativeUrl(FullFilePath));
 }