■ AsyncTextIOWrapper 클래스의 seek 메소드를 사용해 파일 포인터를 설정하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import asyncio import aiofiles async def main(): async with aiofiles.open("sample.txt", mode = "w") as asyncTextIOWrapper: await asyncTextIOWrapper.write("Hello, World!") async with aiofiles.open("sample.txt", mode = "r") as asyncTextIOWrapper: await asyncTextIOWrapper.seek(3) fileContent = await asyncTextIOWrapper.read() print(fileContent) asyncio.run(main()) """ lo, World! """ |