template<class File>
struct boost::beast::http::basic_file_body< File >
A message body represented by a file on the filesystem.
Messages with this type have bodies represented by a file on the file system. When parsing a message using this body type, the data is stored in the file pointed to by the path, which must be writable. When serializing, the implementation will read the file and present those octets as the body content. This may be used to serve content from a directory as part of a web service.
- Template Parameters
-
File | The implementation to use for accessing files. This type must meet the requirements of File. |