bat执行python文件:
- @echo off
- D:
- cd D:\WORKSPACE\Python27\test
- start python sendEmail.py
- exit
程序運行的很正常,可是伴隨著一個黑色的DOS窗口
PYTHON_HOME下有一個"pythonw.exe"
"pythonw.exe"和"python.exe"的區別:
1)"pythonw.exe"執行時不會出現DOS窗口
2)"pythonw.exe"執行時所有stdin和stdout都無效
3)"pythonw.exe"執行時從原有的sdtin只會得到EOF
所以最終結果:
- @echo off
- D:
- cd D:\WORKSPACE\Python27\test
- start pythonw sendEmail.py
- exit