Answers for "how to see files in a folder 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
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 "how to see files in a folder in python"

Python Answers by Framework

Browse Popular Code Answers by Language