I am trying to make a script that makes a directory (name input) and makes a second directory in that just created input folder.
import os
import sys
user_input = raw_input("Enter name: ")
user_input1 = raw_input('Enter case: ')
path = user_input
if not os.path.exists(path):
os.makedirs(path)
path = user_input1
if not os.path.exists(user_input/user_input1):
os.makedirs(path)
I get
if not os.path.exists(user_input/user_input1):
TypeError: unsupported operand type(s) for /: 'str' and 'str'
What am I doing wrong here?
I tried doing this:
if not os.path.exists('/user_input1/user_input'):
But that results in it making two separate directories not subdirectories
To create a sub directory, you need to concatenate the separator in between the two inputs which can be done as :
You need to keep in mind that while checking for the second input string which is a sub directory, you pass
os.path.join(user_input, user_input1)
, as passing onlyuser_input1
would not create a sub directory.