Answers for "open a file in a directory where you only know some of the files name python"

12

get files in directory python

import os
files_and_directories = os.listdir("path/to/directory")
Posted by: Guest on June-12-2020
4

list of files in python

import os
def fn():       # 1.Get file names from directory
    file_list=os.listdir(r"C:\Users")
    print (file_list)

 #2.To rename files
fn()
Posted by: Guest on April-24-2020

Code answers related to "open a file in a directory where you only know some of the files name python"

Python Answers by Framework

Browse Popular Code Answers by Language