Skip to content

Instantly share code, notes, and snippets.

@ilyasustun
Created January 3, 2020 18:20
Show Gist options
  • Save ilyasustun/97b95294ce749eb60b8a7b56ddc97b56 to your computer and use it in GitHub Desktop.
Save ilyasustun/97b95294ce749eb60b8a7b56ddc97b56 to your computer and use it in GitHub Desktop.
create directory in python
import os
path = 'C:/some_place'
if not os.path.exists(path):
os.makedirs(path)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment