Answers for "get a list of all files python"

8

list files in directory python

import os
print(os.listdir('/path/to/folder/to/list'))
Posted by: Guest on April-22-2020
2

list files python

#get all .txt files in my_path
import glob
my_path='/home/folder/'
files=glob.glob(my_path+'*.txt')
Posted by: Guest on April-01-2020
0

get a list of all files python

import os
lst=os.listdir(directory)
Posted by: Guest on June-30-2021

Code answers related to "get a list of all files python"

Python Answers by Framework

Browse Popular Code Answers by Language