python path exists code example
Example 1: python check if path does not exist
import os
if not os.path.exists('my_folder'):
os.makedirs('my_folder')
Example 2: python join paths
import os
# Join paths using OS import. Takes any amount of arguments
path = os.path.join('/var/www/public_html', './app/', ".\\my_file.json")
print(path) # /var/www/public_html/app/myfile.json