holiday-cn/tests/filetools.py
2019-03-12 22:54:23 +08:00

10 lines
182 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))