使用python-Code关闭文件夹不起作用

时间:2016-05-03 07:09:04

标签: python directory

我使用python 2.7.8并使用此代码关闭所有打开的应用程序:

import os,subprocess

os.system('taskkill /im chrome.exe')
os.system('taskkill /im POWERPNT.exe')
os.system('taskkill /im OUTLOOK.exe')
os.system('taskkill /im WINWORD.exe')
os.system('taskkill /im ArcMap.exe')
os.system('taskkill /im acadlt.exe')
os.system('taskkill /im EXCEL.exe')
os.system('taskkill /im AcroBat.exe')
os.system('taskkill /im wmplayer.exe')
subprocess.call('nircmd.exe win close class "CabinetWClass"' , shell=True)

我成功关闭除OUTLOOK以外的所有应用程序以及Windows 7 Professional的所有打开文件夹

1 个答案:

答案 0 :(得分:-1)

尝试重新启动explorer.exe以关闭打开的文件夹。

os.system('taskkill /im explorer.exe')
os.system('explorer.exe')

尝试 f (强制)参数以强制Outlook关闭。

os.system('taskkill /f /im OUTLOOK.exe')

你也可以试试这个; https://stackoverflow.com/a/4230226/4471283