Pythonで拡張子が.txtのディレクトリ内のすべてのファイルを検索する


1043

.txtPythonで拡張子を持つディレクトリ内のすべてのファイルを見つけるにはどうすればよいですか?

回答:


2357

使用できますglob

import glob, os
os.chdir("/mydir")
for file in glob.glob("*.txt"):
    print(file)

または単にos.listdir

import os
for file in os.listdir("/mydir"):
    if file.endswith(".txt"):
        print(os.path.join("/mydir", file))

または、ディレクトリをトラバースする場合は、次を使用しますos.walk

import os
for root, dirs, files in os.walk("/mydir"):
    for file in files:
        if file.endswith(".txt"):
             print(os.path.join(root, file))

11
ソリューション#2を使用して、その情報を含むファイルまたはリストをどのように作成しますか?
マーリン、

72
@ ghostdog74:私の意見では、変数の内容は単一のファイル名なので、書くfor file in fよりも書く方が適切でしょうfor files in f。toを変更しffiles、forループがになるようにするのがさらに良いでしょうfor file in files
martineau

45
@computermacgyver:いいえ、file予約語ではなく、事前定義された関数の名前だけなので、独自のコードで変数名として使用することは十分に可能です。通常、このような衝突を回避fileする必要があるのは事実ですが、これを使用する必要はほとんどないため、特別なケースであり、ガイドラインの例外と見なされることがよくあります。そうしたくない場合、PEP8はそのような名前に単一の下線を追加することを推奨file_します。
martineau 2012年

9
ありがとう、マルティノー、あなたは完全に正しいです。結論にすぐに飛びついた。
computermacgyver

40
#2のためのよりPython的な方法であることができるでファイルの[os.listdirでfに対するF( '/ MYDIR')もしf.endswith( 'TXT')]
ozgur

247

globを使用します。

>>> import glob
>>> glob.glob('./*.txt')
['./outline.txt', './pip-log.txt', './test.txt', './testingvim.txt']

これは簡単なだけでなく、大文字と小文字を区別しません。(少なくとも、Windows上にあるはずです。他のOSについてはわかりません。)
Jon Coombs

35
Pythonが3.5未満の場合、globファイルを再帰的に検索できないことに注意してください。 詳細情報
QUN

最良の部分は、正規表現test * .txtを使用できることです
Alex Punnen

@JonCoombsいいえ。少なくともLinuxではできません。
Karuhanga 2018

157

そのような何かが仕事をするはずです

for root, dirs, files in os.walk(directory):
    for file in files:
        if file.endswith('.txt'):
            print file

73
root, dirs, files代わりに変数に名前を付けるための+1 r, d, f。はるかに読みやすいです。
クレメント2013年

27
。:あなたはおそらくfile.lower()endswith(「TXT」)場合の対処したいと思うので、これは、ケース(.TXTファイルまたは.txtと一致しません)に敏感であることに注意してください
ジョン・クームス

1
あなたの答えはサブディレクトリを扱います。
Sam Liao

117

このようなものが機能します:

>>> import os
>>> path = '/usr/share/cups/charmaps'
>>> text_files = [f for f in os.listdir(path) if f.endswith('.txt')]
>>> text_files
['euc-cn.txt', 'euc-jp.txt', 'euc-kr.txt', 'euc-tw.txt', ... 'windows-950.txt']

text_filesへのパスをどのように保存しますか?['path / euc-cn.txt'、... 'path / windows-950.txt']
IceQueeny

5
os.path.join各要素で使用できますtext_files。のようなものかもしれませんtext_files = [os.path.join(path, f) for f in os.listdir(path) if f.endswith('.txt')]
セス

55

あなたは単にpathlibs 1を使うことができます:glob

import pathlib

list(pathlib.Path('your_directory').glob('*.txt'))

またはループ内:

for txt_file in pathlib.Path('your_directory').glob('*.txt'):
    # do something with "txt_file"

再帰的にしたい場合は、使用できます .glob('**/*.txt)


1pathlibモジュールはPythonの3.4で標準ライブラリに含まれていました。しかし、あなたはさらに古いバージョンのPython(使用してIEでそのモジュールのバックポートをインストールすることができますcondapip):pathlibpathlib2


**/*.txt古いpythonバージョンではサポートされていません。そのため、次のようにして解決しました: foundfiles= subprocess.check_output("ls **/*.txt", shell=True) for foundfile in foundfiles.splitlines(): print foundfile
Roman

1
@Romanはい、それは何pathlibができるかを示す単なるショーケースであり、Pythonバージョンの要件をすでに含めています。:)しかし、あなたのアプローチがまだ投稿されていない場合は、なぜそれを別の回答として追加しないのですか?
MSeifert 2017年

1
はい、回答を投稿することで、書式設定の可能性が確実に高まるでしょう。私はこれをより適切な場所だと思うので、私はそこに投稿します。
ローマ

5
rglobアイテムを再帰的に検索する場合にも使用できます。例.rglob('*.txt')
ブラムヴァンロイ


29

私はos.walk()が好きです

import os

for root, dirs, files in os.walk(dir):
    for f in files:
        if os.path.splitext(f)[1] == '.txt':
            fullpath = os.path.join(root, f)
            print(fullpath)

またはジェネレーターで:

import os

fileiter = (os.path.join(root, f)
    for root, _, files in os.walk(dir)
    for f in files)
txtfileiter = (f for f in fileiter if os.path.splitext(f)[1] == '.txt')
for txt in txtfileiter:
    print(txt)

28

これと同じバージョンがいくつかあり、結果がわずかに異なります。

glob.iglob()

import glob
for f in glob.iglob("/mydir/*/*.txt"): # generator, search immediate subdirectories 
    print f

glob.glob1()

print glob.glob1("/mydir", "*.tx?")  # literal_directory, basename_pattern

fnmatch.filter()

import fnmatch, os
print fnmatch.filter(os.listdir("/mydir"), "*.tx?") # include dot-files

3
好奇心旺盛な方のために、Pythonのドキュメントに記載されていないモジュールのglob1()ヘルパー関数globです。ソースファイルでの動作を説明するインラインコメントがいくつかあります.../Lib/glob.py。を参照してください。
martineau

1
@martineau:glob.glob1()公開されていませんが、Python 2.4-2.7; 3.0-3.2で使用できます。pypy; jython github.com/zed/test_glob1
jfs 10/10/26

1
おかげで、それはモジュールで文書化されていないプライベート関数を使用するかどうかを決定するときに役立つ追加情報です。;-)もう少しです。Python 2.7バージョンは12行しかないため、globモジュールから簡単に抽出できるように見えます。
martineau

21

path.pyは別の代替手段です:https : //github.com/jaraco/path.py

from path import path
p = path('/path/to/the/directory')
for f in p.files(pattern='*.txt'):
    print f

かっこいい、パターンでの正規表現も受け付けます。私はfor f in p.walk(pattern='*.txt')すべてのサブフォルダーを通過することを使用しています
コスタノス2013

1
ええ、pathlibもあります。:あなたのような何かを行うことができます list(p.glob('**/*.py'))
user2233949

15

Python v3.5以降

再帰関数でos.scandirを使用する高速な方法。フォルダーおよびサブフォルダー内の指定された拡張子を持つすべてのファイルを検索します。

import os

def findFilesInFolder(path, pathList, extension, subFolders = True):
    """  Recursive function to find all files of an extension type in a folder (and optionally in all subfolders too)

    path:        Base directory to find files
    pathList:    A list that stores all paths
    extension:   File extension to find
    subFolders:  Bool.  If True, find files in all subfolders under path. If False, only searches files in the specified folder
    """

    try:   # Trapping a OSError:  File permissions problem I believe
        for entry in os.scandir(path):
            if entry.is_file() and entry.path.endswith(extension):
                pathList.append(entry.path)
            elif entry.is_dir() and subFolders:   # if its a directory, then repeat process as a nested function
                pathList = findFilesInFolder(entry.path, pathList, extension, subFolders)
    except OSError:
        print('Cannot access ' + path +'. Probably a permissions error')

    return pathList

dir_name = r'J:\myDirectory'
extension = ".txt"

pathList = []
pathList = findFilesInFolder(dir_name, pathList, extension, True)

2019年4月の更新

10,000個のファイルを含むディレクトリを検索する場合、リストへの追加は非効率的です。結果を「生成する」ことは、より良い解決策です。また、出力をPandas Dataframeに変換する関数も含めました。

import os
import re
import pandas as pd
import numpy as np


def findFilesInFolderYield(path,  extension, containsTxt='', subFolders = True, excludeText = ''):
    """  Recursive function to find all files of an extension type in a folder (and optionally in all subfolders too)

    path:               Base directory to find files
    extension:          File extension to find.  e.g. 'txt'.  Regular expression. Or  'ls\d' to match ls1, ls2, ls3 etc
    containsTxt:        List of Strings, only finds file if it contains this text.  Ignore if '' (or blank)
    subFolders:         Bool.  If True, find files in all subfolders under path. If False, only searches files in the specified folder
    excludeText:        Text string.  Ignore if ''. Will exclude if text string is in path.
    """
    if type(containsTxt) == str: # if a string and not in a list
        containsTxt = [containsTxt]

    myregexobj = re.compile('\.' + extension + '$')    # Makes sure the file extension is at the end and is preceded by a .

    try:   # Trapping a OSError or FileNotFoundError:  File permissions problem I believe
        for entry in os.scandir(path):
            if entry.is_file() and myregexobj.search(entry.path): # 

                bools = [True for txt in containsTxt if txt in entry.path and (excludeText == '' or excludeText not in entry.path)]

                if len(bools)== len(containsTxt):
                    yield entry.stat().st_size, entry.stat().st_atime_ns, entry.stat().st_mtime_ns, entry.stat().st_ctime_ns, entry.path

            elif entry.is_dir() and subFolders:   # if its a directory, then repeat process as a nested function
                yield from findFilesInFolderYield(entry.path,  extension, containsTxt, subFolders)
    except OSError as ose:
        print('Cannot access ' + path +'. Probably a permissions error ', ose)
    except FileNotFoundError as fnf:
        print(path +' not found ', fnf)

def findFilesInFolderYieldandGetDf(path,  extension, containsTxt, subFolders = True, excludeText = ''):
    """  Converts returned data from findFilesInFolderYield and creates and Pandas Dataframe.
    Recursive function to find all files of an extension type in a folder (and optionally in all subfolders too)

    path:               Base directory to find files
    extension:          File extension to find.  e.g. 'txt'.  Regular expression. Or  'ls\d' to match ls1, ls2, ls3 etc
    containsTxt:        List of Strings, only finds file if it contains this text.  Ignore if '' (or blank)
    subFolders:         Bool.  If True, find files in all subfolders under path. If False, only searches files in the specified folder
    excludeText:        Text string.  Ignore if ''. Will exclude if text string is in path.
    """

    fileSizes, accessTimes, modificationTimes, creationTimes , paths  = zip(*findFilesInFolderYield(path,  extension, containsTxt, subFolders))
    df = pd.DataFrame({
            'FLS_File_Size':fileSizes,
            'FLS_File_Access_Date':accessTimes,
            'FLS_File_Modification_Date':np.array(modificationTimes).astype('timedelta64[ns]'),
            'FLS_File_Creation_Date':creationTimes,
            'FLS_File_PathName':paths,
                  })

    df['FLS_File_Modification_Date'] = pd.to_datetime(df['FLS_File_Modification_Date'],infer_datetime_format=True)
    df['FLS_File_Creation_Date'] = pd.to_datetime(df['FLS_File_Creation_Date'],infer_datetime_format=True)
    df['FLS_File_Access_Date'] = pd.to_datetime(df['FLS_File_Access_Date'],infer_datetime_format=True)

    return df

ext =   'txt'  # regular expression 
containsTxt=[]
path = 'C:\myFolder'
df = findFilesInFolderYieldandGetDf(path,  ext, containsTxt, subFolders = True)

14

Pythonにはこれを行うためのすべてのツールがあります。

import os

the_dir = 'the_dir_that_want_to_search_in'
all_txt_files = filter(lambda x: x.endswith('.txt'), os.listdir(the_dir))

1
all_txt_filesをリストにしたい場合:all_txt_files = list(filter(lambda x: x.endswith('.txt'), os.listdir(the_dir)))
Ena

12

'dataPath'フォルダー内のすべての '.txt'ファイル名をPythonの方法でリストとして取得するには:

from os import listdir
from os.path import isfile, join
path = "/dataPath/"
onlyTxtFiles = [f for f in listdir(path) if isfile(join(path, f)) and  f.endswith(".txt")]
print onlyTxtFiles

12

これを試してみてください、これはすべてのファイルを再帰的に見つけます:

import glob, os
os.chdir("H:\\wallpaper")# use whatever directory you want

#double\\ no single \

for file in glob.glob("**/*.txt", recursive = True):
    print(file)

再帰バージョンではありません(二重星:)**。Python 3でのみ利用可能です。私が気に入らないのはそのchdir部分です。その必要はありません。
ジャン=フランソワ・ファーブル

2
たとえば、osライブラリを使用してパスを結合し、filepath = os.path.join('wallpaper')それをとして使用するとglob.glob(filepath+"**/*.psd", recursive = True)、同じ結果が得られます。
Mitalee Rao

8
import os
import sys 

if len(sys.argv)==2:
    print('no params')
    sys.exit(1)

dir = sys.argv[1]
mask= sys.argv[2]

files = os.listdir(dir); 

res = filter(lambda x: x.endswith(mask), files); 

print res

8

特定の拡張子を持つファイルの完全なファイルパスのリストを取得するために、1つのフォルダー(サブディレクトリなし)で最も高速なソリューションを確認するテスト(Python 3.6.4、W7x64)を行いました。

短いそれを作るために、このタスクのためにos.listdir():最速で、次善の速さで1.7倍であるos.walk()として、高速として(ブレイクで!)、2.7倍pathlib速くより3.2倍、os.scandir()および3.3倍速くよりglob
再帰的な結果が必要な場合は、これらの結果が変わることに注意してください。以下の1つのメソッドをコピーして貼り付ける場合は、.lower()を追加してください。そうしないと、.extを検索しても.EXTが見つかりません。

import os
import pathlib
import timeit
import glob

def a():
    path = pathlib.Path().cwd()
    list_sqlite_files = [str(f) for f in path.glob("*.sqlite")]

def b(): 
    path = os.getcwd()
    list_sqlite_files = [f.path for f in os.scandir(path) if os.path.splitext(f)[1] == ".sqlite"]

def c():
    path = os.getcwd()
    list_sqlite_files = [os.path.join(path, f) for f in os.listdir(path) if f.endswith(".sqlite")]

def d():
    path = os.getcwd()
    os.chdir(path)
    list_sqlite_files = [os.path.join(path, f) for f in glob.glob("*.sqlite")]

def e():
    path = os.getcwd()
    list_sqlite_files = [os.path.join(path, f) for f in glob.glob1(str(path), "*.sqlite")]

def f():
    path = os.getcwd()
    list_sqlite_files = []
    for root, dirs, files in os.walk(path):
        for file in files:
            if file.endswith(".sqlite"):
                list_sqlite_files.append( os.path.join(root, file) )
        break



print(timeit.timeit(a, number=1000))
print(timeit.timeit(b, number=1000))
print(timeit.timeit(c, number=1000))
print(timeit.timeit(d, number=1000))
print(timeit.timeit(e, number=1000))
print(timeit.timeit(f, number=1000))

結果:

# Python 3.6.4
0.431
0.515
0.161
0.548
0.537
0.274

Python 3.6.5ドキュメントは次のように述べています。os.scandir()関数は、ファイル属性情報とともにディレクトリエントリを返し、多くの一般的な使用例で[os.listdir()よりも優れたパフォーマンス]を提供します。
Bill Oldroyd

このテストのスケーリング範囲がありません。このテストで使用したファイルの数はいくつですか。数値を拡大/縮小した場合、それらはどのように比較されますか?
N4ppeL

5

このコードは私の人生をよりシンプルにします。

import os
fnames = ([file for root, dirs, files in os.walk(dir)
    for file in files
    if file.endswith('.txt') #or file.endswith('.png') or file.endswith('.pdf')
    ])
for fname in fnames: print(fname)

5

fnmatchを使用:https ://docs.python.org/2/library/fnmatch.html

import fnmatch
import os

for file in os.listdir('.'):
    if fnmatch.fnmatch(file, '*.txt'):
        print file

5

同じディレクトリの「data」というフォルダから「.txt」ファイル名の配列を取得するには、通常、次の単純なコード行を使用します。

import os
fileNames = [fileName for fileName in os.listdir("data") if fileName.endswith(".txt")]

3

fnmatchと上部のメソッドを使用することをお勧めします。この方法で、次のいずれかを見つけることができます。

  1. 名前。txt ;
  2. 名前。txt ;
  3. 名前。Txt

import fnmatch
import os

    for file in os.listdir("/Users/Johnny/Desktop/MyTXTfolder"):
        if fnmatch.fnmatch(file.upper(), '*.TXT'):
            print(file)

3

これは extend()

types = ('*.jpg', '*.png')
images_list = []
for files in types:
    images_list.extend(glob.glob(os.path.join(path, files)))

.txt:) との併用は不可
Efreeto '19年

2

サブディレクトリを持つ機能的なソリューション:

from fnmatch import filter
from functools import partial
from itertools import chain
from os import path, walk

print(*chain(*(map(partial(path.join, root), filter(filenames, "*.txt")) for root, _, filenames in walk("mydir"))))

15
このコードは、長期的に維持したいですか?
Simeon Visser 2014年

2

フォルダーに多くのファイルが含まれている場合やメモリが制約である場合は、ジェネレーターの使用を検討してください。

def yield_files_with_extensions(folder_path, file_extension):
   for _, _, files in os.walk(folder_path):
       for file in files:
           if file.endswith(file_extension):
               yield file

オプションA:繰り返す

for f in yield_files_with_extensions('.', '.txt'): 
    print(f)

オプションB:すべて取得

files = [f for f in yield_files_with_extensions('.', '.txt')]

2

ghostdogのようなコピー貼り付け可能なソリューション:

def get_all_filepaths(root_path, ext):
    """
    Search all files which have a given extension within root_path.

    This ignores the case of the extension and searches subdirectories, too.

    Parameters
    ----------
    root_path : str
    ext : str

    Returns
    -------
    list of str

    Examples
    --------
    >>> get_all_filepaths('/run', '.lock')
    ['/run/unattended-upgrades.lock',
     '/run/mlocate.daily.lock',
     '/run/xtables.lock',
     '/run/mysqld/mysqld.sock.lock',
     '/run/postgresql/.s.PGSQL.5432.lock',
     '/run/network/.ifstate.lock',
     '/run/lock/asound.state.lock']
    """
    import os
    all_files = []
    for root, dirs, files in os.walk(root_path):
        for filename in files:
            if filename.lower().endswith(ext):
                all_files.append(os.path.join(root, filename))
    return all_files

1

Python OSモジュールを使用して、特定の拡張子を持つファイルを検索します。

簡単な例はここにあります:

import os

# This is the path where you want to search
path = r'd:'  

# this is extension you want to detect
extension = '.txt'   # this can be : .jpg  .png  .xls  .log .....

for root, dirs_list, files_list in os.walk(path):
    for file_name in files_list:
        if os.path.splitext(file_name)[-1] == extension:
            file_name_path = os.path.join(root, file_name)
            print file_name
            print file_name_path   # This is the full path of the filter file

0

多くのユーザーがos.walkすべてのファイルだけでなく、すべてのディレクトリとサブディレクトリとそれらのファイルを含む回答で返信しています。

import os


def files_in_dir(path, extension=''):
    """
       Generator: yields all of the files in <path> ending with
       <extension>

       \param   path       Absolute or relative path to inspect,
       \param   extension  [optional] Only yield files matching this,

       \yield              [filenames]
    """


    for _, dirs, files in os.walk(path):
        dirs[:] = []  # do not recurse directories.
        yield from [f for f in files if f.endswith(extension)]

# Example: print all the .py files in './python'
for filename in files_in_dir('./python', '*.py'):
    print("-", filename)

または、ジェネレータが不要な場合:

path, ext = "./python", ext = ".py"
for _, _, dirfiles in os.walk(path):
    matches = (f for f in dirfiles if f.endswith(ext))
    break

for filename in matches:
    print("-", filename)

他のものに一致を使用する場合は、ジェネレータ式ではなくリストにすることができます。

    matches = [f for f in dirfiles if f.endswith(ext)]

0

forloop を使用した簡単な方法:

import os

dir = ["e","x","e"]

p = os.listdir('E:')  #path

for n in range(len(p)):
   name = p[n]
   myfile = [name[-3],name[-2],name[-1]]  #for .txt
   if myfile == dir :
      print(name)
   else:
      print("nops")

これはより一般化することができますが。


拡張機能をチェックする非常に unpythonicな方法。安全でもない。名前が短すぎるとどうなりますか?そして、なぜ文字列ではなく文字のリストを使用するのですか?
ジャン=フランソワ・ファーブル
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.