I have the code
import os
def Load():
for filename in os.listdir("directoryPath"):
content = open(filename, "r")
Load()
And I would like to know how to load the files that filename
returns, at the moment I just get an error saying FileNotFoundError: [Errno 2] No such file or directory: 'Adjectives.txt'