Answers for "python enumerate files in directory"

0

list directory in python

from os import listdir

## Prints the current directory as a list (including file types)
print(os.listdir())
Posted by: Guest on April-23-2020

Code answers related to "python enumerate files in directory"

Python Answers by Framework

Browse Popular Code Answers by Language