Answers for "python code to list all files in a 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 code to list all files in a directory"

Python Answers by Framework

Browse Popular Code Answers by Language