archive_directory.py 1.3 KB

1234567891011121314151617
  1. #! /usr/bin/env python
  2. # -*- coding: UTF-8 -*-
  3. #——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*
  4. import os
  5. #——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*
  6. def createAndGetArchiveDirectory () :
  7. ARCHIVE_DIR = os.path.abspath (os.path.dirname (__file__) + "/../archives")
  8. if not os.path.exists (ARCHIVE_DIR):
  9. os.mkdir (ARCHIVE_DIR)
  10. return ARCHIVE_DIR
  11. #——————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*