New to coding and need some help. I've gotten so far just can't figure out how to get it to do what i need next.
import os
import subprocess
import os.path
import glob
import re
import shutil
import sys
import time
#Server Paths
test_path = 'C:\\Users\\richard.hensman\\Documents\\Test Files'
MYSGS = input("ENTER MY SGS NO: ")
BARCODE = input("ENTER BARCODE: ")
FERT = input("ENTER FERT: ")
MM = input("ENTER MM: ")
DESC = input("ENTER DESCRIPTION (NO SLASHES): ")
newfolder = os.path.join(test_path, MYSGS + "-" + BARCODE + "_" + FERT + "_" + MM + "_" + DESC)
os.makedirs(newfolder)
This creates a folder named exactly how i need it however within that folder I need 5 sub-folders: '3D Final', '3D Model', '3D Model', 'Art', 'Reference'
Finally inside sub-folder 'Art' need another sub-folder 'Supplied'
How can I do this?