def getFiles(_root):
return next(os.walk(_root))[2]
root = "../../../Image/new_m/"
fileList = getFiles(root) # return file list
fileList = sorted(fileList)
我得到这个错误,每次我试图运行我的函数,这是应该从我的文件夹中获取文件。每次我尝试运行它时,错误都显示StopIteration
。
def getFiles(_root):
return next(os.walk(_root))[2]
root = "../../../Image/new_m/"
fileList = getFiles(root) # return file list
fileList = sorted(fileList)
我得到这个错误,每次我试图运行我的函数,这是应该从我的文件夹中获取文件。每次我尝试运行它时,错误都显示StopIteration
。
1条答案
按热度按时间5sxhfpxr1#
你可以试试上面的代码。它会解决你的问题。