Answers for "os module to show the contents of the current directory?"

18

python list files in current directory

import os

files = os.listdir('.')
print(files)
for file in files:
  # do something
Posted by: Guest on November-04-2020
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 "os module to show the contents of the current directory?"

Python Answers by Framework

Browse Popular Code Answers by Language