如何让这篇文章跟随python 2.6中的符号链接?
def load_recursive(self, path):
for subdir, dirs, files in os.walk(path):
for file in files:
if file.endswith('.xml'):
file_path = os.path.join(subdir, file)
try:
do_stuff(file_path)
except:
continue
答案 0 :(得分:48)
将followlinks
设为True
。这是os.walk
方法的第四个参数,转载如下:
os.walk(top[, topdown=True[, onerror=None[, followlinks=False]]])
此选项已在Python 2.6中添加。