files Is not saving in that folder this is the code I'm using can anyone help with this
import os
folder_name='my_folder'
entries='['Air Products.pdf', 'My.xlsx', 'Payment.xlsx']'
for i in range(len(entries)):
if os.path.exists(os.path.join(os.getcwd(), folder_name)):
os.path.join(os.getcwd(),folder_name, entries[i])
print(os.path.join(os.getcwd(),folder_name, entries[i]))