holiday-cn/tests/filetools.py
2021-09-22 19:22:48 +08:00

11 lines
183 B
Python

"""Tools for files. """
import os
__dirname__ = os.path.abspath(os.path.dirname(__file__))
def _file_path(*other):
return os.path.abspath(os.path.join(__dirname__, *other))