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