-2

我想检索单个目录中各个子文件夹中存在的所有扩展名为 .xml 的文件的文件名,

4

2 回答 2

0

使用os.walkstr.endswith

于 2013-09-16T14:06:55.287 回答
0

代码:

import os
xmlFiles = []
for directoryPath in os.walk(filePath):
    fileName = directoryPath[2]
    if fileName[:3] = 'xml':# or fileName.endswith('xml'):
        xmlFiles.append(fileName)
于 2013-09-16T14:30:57.553 回答