/
githubmirror
/
edx-platform
Обзор
Документация
Войти
/
githubmirror
/
edx-platform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
release-ulmo
openedx/core/lib/tempdir.py
39 строк
995 B
Feanil Patel
Run `2to3 -f future . -w`
30 дек 2019, 18:35
30 дек 2019, 18:35
9cf2f9f
Код
Авторство
О чём код?
"""Make temporary directories nicely.""" import atexit import os.path import shutil import tempfile def mkdtemp_clean(suffix="", prefix="tmp", dir=None): # pylint: disable=redefined-builtin """Just like mkdtemp, but the directory will be deleted when the process ends.""" the_dir = tempfile.mkdtemp(suffix=suffix, prefix=prefix, dir=dir) atexit.register(cleanup_tempdir, the_dir) return the_dir def cleanup_tempdir(the_dir): """Called on process exit to remove a temp directory.""" if os.path.exists(the_dir): shutil.rmtree(the_dir) def create_symlink(src, dest): """ Creates a symbolic link which will be deleted when the process ends. :param src: path to source :param dest: path to destination """ os.symlink(src, dest) atexit.register(delete_symlink, dest) def delete_symlink(link_path): """ Removes symbolic link for :param link_path: """ if os.path.exists(link_path): os.remove(link_path)