Python генерирует папку, если ее не существует

import os
if not os.path.exists('my_folder'):
    os.makedirs('my_folder')
Nice Newt