Created
August 14, 2020 08:36
-
-
Save wiccy46/a62b6a792d78c155cb38d060d4e897f9 to your computer and use it in GitHub Desktop.
[pythonsys]System relative snippets #python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add one level above to path. | |
sys.path.insert(0, os.path.normpath(os.path.join(os.path.realpath(__file__), | |
'..', '..'))) | |
# ------------------------------------- | |
import shutil, os | |
shutil.rmtree(path, ignore_errors=True) # rm folder | |
os.makedirs(path, exist_ok=True) # mkdir |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment