I'm trying to find all the files in a directory.
import glob
import os
os.chdir("C:\test\\")
for files in glob.glob("*.*"):
print(files)
But this returns nothing, even though there are files in C:\test\
So... what's going on, and how do I fix this?