Im trying to make it so it will check from a list in a directory if every file name from the list exists or not if yes skip and if no create it but i keep runing in to the eror SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
here is a code to just print the name of every file in a directory that works on the same princeble. (if i do only c: for the directory it prints every file in the code directory)
import os
list_of_files = os.listdir('FILE_DIRECTORY_HERE')
print(list_of_files)