Answers for "how to get all the files in a current working direcotyr"

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

Code answers related to "how to get all the files in a current working direcotyr"

Python Answers by Framework

Browse Popular Code Answers by Language