Answers for "python listdir"

4

os.listdir in python

#import libs
import os

#set path of file or website on which listdir is to be applied
path='/users/desktop/dummy'

#Print all data in path

for file in os.listdir(path):
  print(file)
Posted by: Guest on June-06-2021

Python Answers by Framework

Browse Popular Code Answers by Language