5

我目前正在使用来自这里的目录步行器

import os
class DirectoryWalker:
# a forward iterator that traverses a directory tree

def __init__(self, directory):
    self.stack = [directory]
    self.files = []
    self.index = 0

def __getitem__(self, index):
    while 1:
        try:
            file = self.files[self.index]
            self.index = self.index + 1
        except IndexError:
            # pop next directory from stack
            self.directory = self.stack.pop()
            self.files = os.listdir(self.directory)
            self.index = 0
        else:
            # got a filename
            fullname = os.path.join(self.directory, file)
            if os.path.isdir(fullname) and not os.path.islink(fullname):
                self.stack.append(fullname)
            return fullname

for file in DirectoryWalker(os.path.abspath('.')):
    print file

这个微小的更改允许您在文件中拥有完整路径。

任何人都可以帮助我如何使用它来查找文件名吗?我需要完整路径和文件名。

4

4 回答 4

14

为什么要自己做这么无聊的事情?

for path, directories, files in os.walk('.'):
    print 'ls %r' % path
    for directory in directories:
        print '    d%r' % directory
    for filename in files:
        print '    -%r' % filename

输出:

'.'
    d'finction'
    d'.hg'
    -'setup.py'
    -'.hgignore'
'./finction'
    -'finction'
    -'cdg.pyc'
    -'util.pyc'
    -'cdg.py'
    -'util.py'
    -'__init__.pyc'
    -'__init__.py'
'./.hg'
    d'store'
    -'hgrc'
    -'requires'
    -'00changelog.i'
    -'undo.branch'
    -'dirstate'
    -'undo.dirstate'
    -'branch'
'./.hg/store'
    d'data'
    -'undo'
    -'00changelog.i'
    -'00manifest.i'
'./.hg/store/data'
    d'finction'
    -'.hgignore.i'
    -'setup.py.i'
'./.hg/store/data/finction'
    -'util.py.i'
    -'cdg.py.i'
    -'finction.i'
    -'____init____.py.i'

但是,如果您坚持,在os.path中有与路径相关的工具, os.basename 就是您正在查看的内容。

>>> import os.path
>>> os.path.basename('/hello/world.h')
'world.h'
于 2009-04-22T17:40:32.583 回答
6

而不是使用“。” 作为您的目录,请参考其绝对路径:

for file in DirectoryWalker(os.path.abspath('.')):
    print file

另外,我建议使用“文件”以外的词,因为它在 python 语言中表示某些东西。不是关键字,但它仍然运行。

顺便说一句,在处理文件名时,我发现 os.path 模块非常有用——我建议你看一下,尤其是

os.path.normpath

规范化路径(去除多余的 '.'s 和 'theFolderYouWereJustIn/../'s)

os.path.join

加入两条路径

于 2009-04-22T00:26:32.367 回答
1

os.path.dirname()?os.path.normpath()?os.path.abspath()?

这也是一个思考递归的好地方。

于 2009-04-22T00:27:32.740 回答
0

只需将当前目录路径添加到返回的“./foo”路径:

print os.path.join(os.getcwd(), file)
于 2009-04-22T00:27:16.797 回答