Skip to content

Instantly share code, notes, and snippets.

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