When I run this code:
script_path = os.path.realpath(__file__)
new_abs_path = os.path.join(script_path, 'Users')
if not os.path.exists(new_abs_path):
os.makedirs(new_abs_path)
I get this error:
FileNotFoundError: [WinError 3] The system cannot find the path specified '<script drive>\\<script path>\\<script filename>\\User'