def cut(path):
test = str(foundfiles)
newList = [s for s in test if test.endswith('.UnitTests.vbproj')]
for m in newList:
print m
return newList
这个函数通过 findliles 解析,它是一个文件夹中的文件列表,我已经解析了大约 20 多个文件。我需要解析以“.UnitTests.vbproj”结尾的每个文件的列表但是,我无法让它工作。任何建议将不胜感激!
Edit1:这就是我现在编写的代码,我得到属性错误消息框,说'tuple'对象没有属性'endswith'
def cut(path):
test = foundfiles
newList = [s for s in foundfiles if s.endswith('.UnitTests.vbproj')]
for m in newList:
print m
return newList