Answers for "python print directory contents"

0

python program to print the contents of a directory using os module

import os
li = os.listdir(".")
print(li)
Posted by: Guest on February-24-2021
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 print directory contents"

Python Answers by Framework

Browse Popular Code Answers by Language