I want to use BOM with UTF-8. But it only saves files in UTF-8. What can I do ?I'm rather new, could you please write an answer as an addition to the sample code I shared directly?
import os
import codecs
a=1
filelist=os.listdir("name")
for file in filelist:
    filelen=len(os.listdir("name/"+file))
    if filelen==10:
        with open(file + ".iadx", "w", encoding="UTF-8") as f:
            f.write("<name>")
            f.write("\n")
            f.write('something')
 
     
    