I want ro walk a directory and its sub directory on linux, to find some shell script file, and run them, but I found some path belong blank charactor, such as '8000 dir', if I write as follow, I got error "no such file" path = '8000 dir' for root, dirs, files in os.walk(path): cmd = ' ' cmd = 'cd ' + root os.system(cmd)
How can I repair it? thanks, best regards. -- http://mail.python.org/mailman/listinfo/python-list