Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- import os
- import pathlib
-
- from config import conf
-
-
- class TmpDir(object):
- """A temporary directory that is deleted when the object is destroyed."""
-
- tmpFilePath = pathlib.Path("./tmp/")
-
- def __init__(self):
- pathExists = os.path.exists(self.tmpFilePath)
- if not pathExists:
- os.makedirs(self.tmpFilePath)
-
- def path(self):
- return str(self.tmpFilePath) + "/"
|