Answers for "list all the files in folder python"

9

list files in directory python

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

get list of files in directory python

import os
path = '/folder1/folder2/'
files = os.listdir(path)
Posted by: Guest on January-20-2021

Code answers related to "list all the files in folder python"

Python Answers by Framework

Browse Popular Code Answers by Language