まとめ:
Pythonでpskill.exeコマンドを実行したいです。dos プロンプトで試してみました: C:\Users\JohanSA\Documents\EclipseWorkspace\ProdataATFBASE\src\resources\pskill.exe \localhost -t 11780 --> うまくいきました!
==> しかし、Python 経由で同じコマンドを実行したい。
prodataOSLib.executeCmd("pskill.exe -t 11780", True, True)
--> がんばれ!
今、コンピューター名を pskill コマンドに追加したい
prodataOSLib.executeCmd("pskill.exe \\localhost -t 11780", True, True)
-->うまくいかない
executeCmd-function にログインすると、次のようになります。
11-04-2011 13:35:15 [prodataoslib-executeCmd] - デバッグ: コマンドを実行中: C:\Users\JohanSA\Documents\EclipseWorkspace\ProdataATFBASE\src\resources\pskill.exe \localhost -t 11780
--> 問題は、「localhost」という単語の前にバックスラッシュが 1 つしかないことです --> しかし、「localhost」の前にこの 2 つのバックスラッシュを付けるにはどうすればよいですか?
誰でもこれで私を助けることができますか?
どうもありがとう!ヨハン
これは executeCmd 関数です。
def executeCmd (self,command, useResourceFolder=False, resultlogging=False):
''' Execute a command (default from current execution-folder) like you should type it in a DOS-prompt.
Parameters:
command = the command to be executed
useResourceFolder = False (=default) or True --> set True if you want to execute a file from the resourcefolder.
resultlogging = True when you want logging the result.
return: List with result-messages or error-messages
'''
if useResourceFolder:
command = os.path.abspath(os.path.join(self.currentdir, "..", "resources",command)) # Set path from resource directory
try:
self.logger.debug("Executing command: %s" % command)
output = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
resultfile = output.stdout
resultmessageList = []
for i in resultfile.readlines():
resultmessageList.append(i)
if resultlogging:
if len(resultmessageList) > 0:
resultstring=""
for messageline in resultmessageList:
resultstring = resultstring + messageline.replace('\n', '')
self.logger.debug("RESULT MESSAGE: %s " % resultstring)
return resultmessageList
except OSError, e:
self.logger.error("Execution FAILED. Exception: %s" %(e))