从谷歌的Windows打开文件或在python中的Internet探索

时间:2015-04-16 07:30:44

标签: python-3.x

强文我想在不同平台的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])

0 个答案:

没有答案