What’s the deal with boost.asio and file i/o?
Has boost.asio any kind of file support? Starting with (I think) Boost 1.36 (which contains Asio 1.2.0) you can use [boost::asio::]windows::stream_handle or windows::random_access_handle to wrap a HANDLE and perform asynchronous read and write methods on it that use the OVERLAPPED structure internally. User Lazin also mentions boost::asio::windows::random_access_handle that can be used for async operations (e.g. … Read more