filetools.py 183 B

12345678910
  1. """Tools for files. """
  2. import os
  3. __dirname__ = os.path.abspath(os.path.dirname(__file__))
  4. def _file_path(*other):
  5. return os.path.abspath(os.path.join(__dirname__, *other))