Published
- 1 min read
python create folder if not exists
The solution for this is noted below
python create folder if not exists
Solution
if (not os.path.exists("images")):
os.mkdir("images")
Try other methods by searching on the site. That is if this doesn’t work