Answers for "how to read file in python that is one directory down"

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
1

python get files in directory

from pathlib import Path
for txt_path in Path("/path/folder/directory").glob("*.txt"):
  print(txt_path)
Posted by: Guest on November-30-2020

Code answers related to "how to read file in python that is one directory down"

Python Answers by Framework

Browse Popular Code Answers by Language