master
/ miniconda3 / envs / poem / lib / python3.10 / site-packages / aiofiles / ospath.py

ospath.py @a8e0244

41a0142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
"""Async executor versions of file functions from the os.path module."""

from .os import wrap
from os import path

exists = wrap(path.exists)
isfile = wrap(path.isfile)
isdir = wrap(path.isdir)
islink = wrap(path.islink)
getsize = wrap(path.getsize)
getmtime = wrap(path.getmtime)
getatime = wrap(path.getatime)
getctime = wrap(path.getctime)
samefile = wrap(path.samefile)
sameopenfile = wrap(path.sameopenfile)