Answers for "search folder for python files"

5

how to search for a specific file extension with python

import glob, os
os.chdir("/mydir")
for file in glob.glob("*.txt"):
    print(file)
Posted by: Guest on March-06-2020
0

how to search a file in windows 10 using python

import os

def find_files(filename, search_path):
   result = []

# Wlaking top-down from the root
   for root, dir, files in os.walk(search_path):
      if filename in files:
         result.append(os.path.join(root, filename))
   return result

print(find_files("smpl.htm","D:"))
Posted by: Guest on June-27-2020

Code answers related to "search folder for python files"

Python Answers by Framework

Browse Popular Code Answers by Language