Answers for "python auto find filde"

2

python find specific file in directory

text_files = glob.glob(path + "/**/*.txt")
Posted by: Guest on October-08-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

Python Answers by Framework

Browse Popular Code Answers by Language