文件系统

文件系统

for path, subdirs, files in os.walk(root):
  for name in files:
  print os.path.join(path, name)
上一页