1

我有一些目录,其中包含一些其他目录,这些目录在最低级别包含一堆 csv 文件,例如(文件夹)a -> b -> c ->(csv 文件)。每个级别通常只有一个文件夹。当我处理一个目录时,我如何才能遵循这个结构直到最后得到 csv 文件?我在想也许是一个递归解决方案,但我认为可能有更好的方法来做到这一点。我正在使用python。希望我很清楚。

4

1 回答 1

3

os软件包具有一个walk功能,可以完全满足您的需求:

for current_path, directory, files in walk("/some/path"):
    # current_path is the full path of the directory we are currently in
    # directory is the name of the directory
    # files is a list of file names in this directory

您可以使用os.path's导出每个文件的完整路径(如果需要)。

或者,您可能会发现该glob模块对您更有用:

for csv_file in glob(/some/path/*/*.csv"):
    # csv_file is the full path to the csv file.
于 2012-10-11T07:27:23.547 回答