强文我想在不同平台的Web浏览器中打开文件,我为#Mac和#linux做了,但我的问题是我不知道windows。 这是我的代码:
f = open(orginal_filename, "r")
if os.name == "darwin": #Mac
sp.Popen(["open", orginal_filename])
elif os.name=='posix': #linux
sp.Popen(["firefox", orginal_filename])
elif os.name=="nt": #win
sp.Popen(["?????", orginal_filename])