1"""Async executor versions of file functions from the os.path module."""
2
3from .os import wrap
4from os import path
5
6exists = wrap(path.exists)
7isfile = wrap(path.isfile)
8isdir = wrap(path.isdir)
9getsize = wrap(path.getsize)
10getmtime = wrap(path.getmtime)
11getatime = wrap(path.getatime)
12getctime = wrap(path.getctime)
13samefile = wrap(path.samefile)
14sameopenfile = wrap(path.sameopenfile)
15