Answers for "Write a program in Pythonwhich will display all the files and folders present in a given path. in python"

12

get files in directory python

import os
files_and_directories = os.listdir("path/to/directory")
Posted by: Guest on June-12-2020

Code answers related to "Write a program in Pythonwhich will display all the files and folders present in a given path. in python"

Python Answers by Framework

Browse Popular Code Answers by Language