Python script and windows 10
-
Hi!
I am having problems with python script on windows 10. On windows 7 is working (its a converting script) but on windows 10 is not. There is an error. Is anybody has problems like this? Have you got any idea what can I do?
Here is the script:
import os;
import sys;
filePathSrc=“D:\teksty”
for root, dirs, files in os.walk(filePathSrc):
for fn in files:
if fn[-4:] != ‘.jar’ and fn[-5:] != ‘.ear’ and fn[-4:] != ‘.gif’ and fn[-4:] != ‘.jpg’ and fn[-5:] != ‘.jpeg’ and fn[-4:] != ‘.xls’ and fn[-4:] != ‘.GIF’ and fn[-4:] != ‘.JPG’ and fn[-5:] != ‘.JPEG’ and fn[-4:] != ‘.XLS’ and fn[-4:] != ‘.PNG’ and fn[-4:] != ‘.png’ and fn[-4:] != ‘.cab’ and fn[-4:] != ‘.CAB’ and fn[-4:] != ‘.ico’:
notepad.open(root + “\” + fn)
console.write(root + “\” + fn + “\r\n”)
notepad.runMenuCommand(“Encoding”, “Convert to UTF-8”)
notepad.save()
notepad.close() -
Did you check if python script plugin has been installed successfully?
Open python script console and print something to it.
If everything is ok with the installation, did you change the ui language?
The runMenuCommand function must have the exact spelling.Cheers
Claudia