Answers for "python how to list all the files in a directory"

7

list files in directory python

import os
print(os.listdir('/path/to/folder/to/list'))
Posted by: Guest on April-22-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 "python how to list all the files in a directory"

Python Answers by Framework

Browse Popular Code Answers by Language