Background
I use the command dir/s in batch files all the time. But, I am unable to call this using python. NOTE: I am
dir/s
How about
subprocess.call("dir/s", shell=True)
Not verified.