Skip to content

Instantly share code, notes, and snippets.

@godfather68
Last active May 14, 2020 21:59
Show Gist options
  • Save godfather68/b44e7552777d5813cd881f6b6db54556 to your computer and use it in GitHub Desktop.
Save godfather68/b44e7552777d5813cd881f6b6db54556 to your computer and use it in GitHub Desktop.
def directory_checker():
# Checking if the directory exists
if os.path.exists(template_dir):
return template_dir
else:
os.makedirs(template_dir)
directory_checker()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment