os.system is not the prefered way to fork or spawn a new process. for new process use the Popen. u can take a look at the python documentation here subprocess_2.7_module.
import subprocess
command = "tree ...whatever"
p = subprocess.Popen(command, shell=True) #shell=true cos you are running a win shell command
#if you need to communictae with the subprocess use pipes, see below:
p = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stderrret,stdoutret=p.communicate()
#now we can parse the output from the child process
str_command_out = parse_child_output(stdoutret) #we also need to check if child finish without failure!
do_what_ever_you_like_with(str_command_out)