Does asyncio supports asynchronous I/O for file operations?

python, python-3.5, python-3.x, python-asyncio

Solution

Most operating systems don't support asynchronous file operations. That's why `asyncio` doesn't support them either.

See the asyncio wiki for further explanation.

Problem

Does asyncio supports asynchronous I/O for file operations? If yes, how I can use this in Python 3.5 with async/await syntax code?

Original source

Related problems