Tag: glob
-
[Python] glob package : Search for Files with a Specific Name but You Don’t Know the File Extension
If you want to search for files with a specific name (e.g. “example”), but you don’t know the file extension, you can use the glob module to search for files with a specific pattern. The glob module provides a function called glob() that can be used to search for files with a specific pattern in…