create a file in the current directory if the fiel is not existed in python code example
Example: python check if path does not exist
import os
if not os.path.exists('my_folder'):
os.makedirs('my_folder')
import os
if not os.path.exists('my_folder'):
os.makedirs('my_folder')