fnmatch.fnmatch()

fnmatch.fnmatch(filename, pattern)

Test whether the filename string matches the pattern string, returning True or False. If the operating system is case-insensitive, then both parameters will be normalized to all lower- or upper-case before the comparison is performed. fnmatchcase() can be used to perform a case-sensitive comparison, regardless of whether that’s standard for the operating system.

This example will print all file names in the current directory with the extension .txt:

1
2
3
4
5
6
import fnmatch
import os
 
for file in os.listdir('.'):
    if fnmatch.fnmatch(file, '*.txt'):
        print(file)
doc_python
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.