Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
-
- 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 and conf().get('speech_recognition') == True:
- os.makedirs(self.tmpFilePath)
-
- def path(self):
- return str(self.tmpFilePath) + '/'
-
|