I\'ve had it suggested to me that I should use FileResult to allow users to download files from my Asp.Net MVC application. But the only examples of this I can find always h
its simple just give your physical path in directoryPath with file name
public FilePathResult GetFileFromDisk(string fileName) { return File(directoryPath, "multipart/form-data", fileName); }