Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET MVC FilePathResult: How to return an html file not found?

The following code is hopefully a correct way to return an image that exists on disk using ASP.NET MVC 3:

public FilePathResult GetThumbnail(string imageName)
{
    if( !String.IsNullOrEmpty(imageName) &&
        Regex.IsMatch(imageName, @"^p\d{10}.jpg$"))) ) // p0000000000.jpg
    {
        var homePath = Server.MapPath("~/Content/previews");
        var imagePath = Path.Combine( homePath, imageName );

        if( System.IO.File.Exists(imagePath) )
            return this.File(imagePath, "image/jpeg");
    }

    return ???   
}

If you don't find the file, what could you return that would represent an HTML 404 error (or equivalent?)

like image 923
Zachary Scott Avatar asked Feb 01 '11 19:02

Zachary Scott


1 Answers

You would throw new HttpException(404, "Not found");. Obviously you would have a corresponding page in the customErrors section of your web.config to indicate the 404 to the user.

like image 67
Darin Dimitrov Avatar answered Sep 20 '22 06:09

Darin Dimitrov