简体   繁体   中英

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?)

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM